BarTender での HTML の使用

一般に HTML と略される HyperText Markup Language (ハイパーテキストマークアップ言語) とは、タグを使用してオブジェクトを書式設定できるマークアップ言語です。Web サイトの書式設定によく使用されますが、BarTender で使用して、テキストオブジェクトを書式設定できます。

ClosedHTML 書式設定の使用例

次の例は、テキストオブジェクト内の HTML の使用法を示します。

<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>

上記のサンプルコードがテキストオブジェクトに挿入されると、次のオブジェクトが項目の上に印刷されます。

このセクションの内容