Utilizar HTML con BarTender

Puede utilizar el lenguaje de marcado de hipertexto (HTML) para dar formato a los objetos mediante el uso de etiquetas. Normalmente, el HTML se utiliza para dar formato a las páginas web, pero puede utilizarlo en BarTender para dar formato a un objeto de texto.

CerradoEjemplo de formato HTML

El siguiente ejemplo muestra cómo utilizar HTML dentro de un objeto de texto.

<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> Nombre </th>

<th> Apellido </th>

<th> Ciudad </th>

<th> Estado </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>

Cuando inserte este código de ejemplo en un objeto de texto, se imprimirá el siguiente objeto en su elemento.

En este apartado