Verwendung von HTML in BarTender

Bei der Auszeichnungssprache HyperText Markup Language, die gewöhnlich mit HTML abgekürzt wird, können Sie Objekte mithilfe von Tags formatieren. Sie wird in erster Linie zur Formatierung von Websites benutzt, kann jedoch in BarTender auch zur Formatierung von Textobjekten verwendet werden.

GeschlossenBeispiel für HTML-Formatierung

Das folgende Beispiel zeigt die Nutzung von HTML innerhalb eines Textobjekts.

<html>

<head>

<style>

body {font-size:8pt; font-family: Arial;}

table {background: AntiqueWhite; width: 300px;}

th {background: DarkBlue; color: White;}

td {border: solid 1px;}

</style>

</head>

<body>

<table>

<tr>

<th> First Name </th>

<th> Last Name </th>

<th> City </th>

<th> State </th>

</tr>

<tr>

<td> Lisa </td>

<td> Johnson </td>

<td> Seattle </td>

<td> WA </td>

</tr>

<tr>

<td> John </td>

<td> Smith </td>

<td> Baltimore </td>

<td> MD </td>

</tr>

<tr>

<td> Sarah </td>

<td> Donahue </td>

<td> Dallas </td>

<td> TX </td>

</tr>

</table>

</body>

</html>

Wenn der obige Beispielcode in ein Textobjekt eingefügt wird, erscheint der folgende Ausdruck auf Ihrem Element:

In diesem Abschnitt