Labeling features with text |
|
| Release 8 |
|
ArcPad allows you to label features with text. The Text Label field is supported for point, line, and polygon layers.
The Labels page of the Layer Properties dialog box is used to specify display settings for labels of a point, line, or polygon layer. You can specify the attribute field for the label text; the size, color, and type of font; the reference scale for the label text; the placement for point and line features; and the display scale range of the label text.
Following standard scripting notation, string literals must be enclosed in quotation marks, attribute fields are accessed via the [fieldname] technique, and the CStr function can be used to concatenate numeric fields. ArcPad automatically converts any resultant expression into a string.
For example, the following VBScript expression will result in a stacked label of two fields, NAME and YEAR..
[NAME] & vbCrLf & [Year]
The following VBScript expression will result in a label showing a caption followed by the area. The area is calculated from two fields, WIDTH and LENGTH.
“Area=” [WIDTH] * [LENGTH]