Siebel Service Handheld Guide > Print Tagging Language > Data Output Tags >

Cell Tag


The Cell tag prints the string stored in the name="STRING" parameter or variable="VARIABLE NAME" parameter at the specified location on the current line.

Usage

Use the Cell tag to create cells of data in a row in a table. Use it with the EndOfLine tag. If the data exceeds the width of the cell specified by the Startat and Endat parameters, then the data wraps to the next line.

Syntax

<TAG:CELL startat="START" endat="END" name="STRING" align="ALIGNMENT" left="LEFT" top="TOP" right="RIGHT" bottom="BOTTOM" box="BOX" linewidth="LINEWIDTH">

<TAG:CELL startat="START" endat="END" variable="VARIABLE NAME" align="ALIGNMENT" left="LEFT" top="TOP" right="RIGHT" bottom="BOTTOM" box="BOX" linewidth="LINEWIDTH">

<TAG:EndOfLine>

Parameter
Description

TAG:Cell

(Required) Required tag indicator.

startat

(Required in relative mode) Specifies the starting point of the cell, expressed as a percentage of the printable page width. For example, if
START =10, then the cell starts at the point that is 10% from the left edge of the printable width.

endat

(Required in relative mode) Specifies the end point of the cell, expressed as a percentage of the printable page width. For example, if END=50, then the cell ends at the point that is 50% from the left edge of the printable width.

name

(Optional) String value. If a variable parameter is not specified, then name is a required parameter.

variable

(Optional) Variable where the value is stored. If a name parameter is not specified, then variable is a required parameter.

align

(Optional, Existing) Specifies the alignment of the string.

Valid values are LEFT (default), CENTER, and RIGHT.

left

(Optional, absolute mode-only tag) Specifies the distance, in millimeters, of the left side of the cell from the left margin. If omitted, the current head position is used and RIGHT parameter is used to specify the width of the cell.

top

(Optional in absolute mode) Specifies the distance, in millimeters, of the top side of the cell from the top margin. If omitted, the current head position is used and the BOTTOM parameter is used to specify the height of the cell.

right

(Required in absolute mode) Specifies the distance, in millimeters, of the right side of the cell from the left margin.

bottom

(Required in absolute mode) Specifies the distance, in millimeters, of the bottom side of the cell from the top margin.

box

(Optional) Specifies whether to draw a box around the printed cell data in form applets.

Valid values are TRUE and FALSE (default). This parameter does not apply to list applets.

linewidth

(Optional in absolute mode) Specifies the thickness, in millimeters, of the line drawn if BOX is set to TRUE. If omitted, line width is 0.2 millimeters.

Example

The following example prints "Text In A Box" inside a rectangular box 10 millimeters (mm) long x 30 mm wide, which is 200 mm from the top margin, and 10 mm from the left margin.

<TAG:Cell name="Text In A Box" top="200" left="10" bottom="210" right="60" box="TRUE" linewidth="0.1" align="LEFT">

<TAG:EndOfLine>

Siebel Service Handheld Guide Copyright © 2007, Oracle. All rights reserved.