field
Type
object
Summary
A control that contains text.
Syntax
field
Description
Use the field object type to hold text or to provide a place for the user to enter text.
Fields can contain styled text (with different fonts, sizes, styles, and colors for different parts of the text they contain). A field can be displayed with or without horizontal and vertical scrollbars, and can be unlocked (allowing the user to enter text) or locked.
A field is contained in a card, group, or background. Fields cannot contain other objects.
Examples
set the backgroundColor of field "Warnings" to "red"
put it into line 3 of field "Help"
Related
glossary: object type
keyword: templateField, control
Compatibility and Support
Introduced
LiveCode 1.0
OS
mac
windows
linux
ios
android
Platforms
desktop
server
mobile
Associated Syntax
Message
Name | Summary | Syntax |
---|---|---|
socketError | Sent when an error occurs on a socket that causes the socket to close or to fail to open. | socketError <pSocketID>, <pErrorString> |
tabKey | Sent when the user presses the Tab key. | tabKey |
mouseWithin | Sent periodically to an object while the mouse pointer is within its borders. | mouseWithin |
rawKeyDown | Sent when the user presses any key. | rawKeyDown <pKeyCode> |
dragEnd | Sent to the object a drag and drop started from, when the data is dropped. | dragEnd |
commandKeyDown | Sent when a Command key combination (Control-key on Unix or Windows) is pressed. | commandKeyDown <pKeyName> |
controlKeyDown | Sent when a Control key combination is pressed. | controlKeyDown <pKeyName> |
exitField | Sent to the field with the selection when the selection is being removed from the field, and its contents have not changed. | exitField |
functionKey | Sent when the user presses a function key. | functionKey <pKeyNumber> |
optionKeyDown | Sent when the user presses an Option key, Meta key, or Alt key combination. | optionKeyDown <pKeyName> |
focusOut | Sent to a button or field when it becomes inactive (loses focus). | focusOut |
nameChanged | Sent to an object when its name is changed. | nameChanged <pOldName>, <pNewName> |
dragDrop | Sent to the object where data was dropped when a drag and drop finishes. | dragDrop |
deleteField | Sent to a field just before it is removed from the stack. | deleteField |
scrollbarDrag | Sent to a field, scrollbar, or group when the user drags the scrollbar thumb or when a text selection causes a field to scroll. | scrollbarDrag <pNewPosition> |
dragLeave | Sent when the mouse pointer moves out of an object during a drag and drop. | dragLeave |
socketTimeout | Sent when an open socket, read from socket or write to socket command halts for the time specified by the socketTimeoutInterval property. | socketTimeout <pSocketID> |
textChanged | Sent when the content of a field has changed. | textChanged |
selectedObjectChanged | Sent to an object when it is selected. | selectedObjectChanged |
dragEnter | Sent when the mouse pointer moves into an object during a drag and drop. | dragEnter |
enterKey | Sent when the user presses the Enter key, if there is no text selection. | enterKey |
backspaceKey | Sent to the active control, or to the current card if no control is focused. | backspaceKey |
escapeKey | Sent when the user presses the Escape key. | escapeKey |
copyKey | Sent when the user presses the key combination equivalent to the Copy menu item. | copyKey |
mouseRelease | Sent when the user releases the mouse outside the control that was clicked. | mouseRelease <pButtonNumber> |
arrowKey | Sent to the active control, or to the current card if no control is focused, when the user presses an arrow key. | arrowKey <pKey> |
pasteKey | Sent when the user presses the key combination equivalent to the "Paste" menu item. | pasteKey |
mouseDown | Sent when the user presses the mouse button. | mouseDown <pButtonNumber> |
closeField | Sent to a field when the focus is being removed from that field and the field's content has changed. | closeField |
returnInField | Sent to a field when the selection is in the field and the user presses the Return key. | returnInField |
focusIn | Sent to a control when it becomes active focused. | focusIn |
selectionChanged | Sent to a field or player when the selection is changed. | selectionChanged |
mouseEnter | Sent when the mouse pointer moves into an object. | mouseEnter |
deleteKey | Sent to the active (focused) control(glossary), or to the current card if there is no active control. | deleteKey |
rawKeyUp | Sent when the user releases any key that was pressed (other than a modifier key). | rawKeyUp <pKeyCode> |
mouseUp | Sent when the user releases the mouse button. | mouseUp <pButtonNumber> |
dragMove | Sent when the user moves the mouse during a drag and drop. | dragMove |
cutKey | Sent when the user presses the key combination equivalent to the Cut menu item. | cutKey |
mouseStillDown | Sent periodically while the mouse button is being held down. | mouseStillDown <pButtonNumber> |
linkClicked | Sent when the user clicks grouped text. | linkClicked <pLinkedTextOfChunk> |
dragStart | Sent to a control when the user clicked on it and then started to drag the mouse pointer. | dragStart |
openField | Sent to an unlocked field when you click or select text in that field. | openField |
mouseMove | Sent when the user moves the mouse. | mouseMove <pNewMouseH>, <pNewMouseV> |
resizeControl | Sent to a control right after the user resizes it. | resizeControl |
newField | Sent to a new field right after it's created. | newField |
enterInField | Sent to the field with the current selection when the user presses the Enter key. | enterInField |
keyDown | Sent when the user presses a key. | keyDown <pKeyName> |
mouseLeave | Sent when the mouse pointer moves out of an object. | mouseLeave |
socketClosed | Sent when the remote system closes a socket. | socketClosed <pSocketID> |
mouseDoubleUp | Sent when the mouse button is released at the end of a double-click. | mouseDoubleUp <pButtonNumber> |
keyUp | Sent when the user releases a pressed key. | keyUp <pKeyName> |
mouseDoubleDown | Sent when the user double-clicks. | mouseDoubleDown <pButtonNumber> |
Command
Name | Summary | Syntax |
---|---|---|
put unicode | Inserts a unicode string into a field where specified. | put unicode <value> {before | into | after} <fieldChunk> |
Property
Name | Summary | Syntax |
---|---|---|
metadata | The **metadata** property of a field chunk specifies additional information stored with the field chunk but not visible to the user. | set the metadata of <fieldChunk> to <string> |
lockText | Specifies whether the contents of a field can be selected and changed by the user. | set the lockText of <field> to {true | false} |
lineIndex | The line offset in the field of the start of the chunk. | get the lineIndex of <fieldChunk> |
topRight | Specifies the location of the specified object's upper right corner. | set the topRight of <object> to <right>, <top> |
formattedWidth | Reports the width needed by an object to display its full contents without scrolling. | get the formattedWidth of <object> get the formattedWidth of [<chunk> of] <field> |
multipleHilites | Specifies whether more than one line can be selected in a list field. | set the multipleHilites of <field> to {true | false} |
listDepth | Specifies the depth of a line in a list. | set the listDepth of <line> of <field> to 1 |
spaceBelow | Determines the space below a paragraph in a field. | set the spaceBelow of <line> of <field> to <pixels> |
script | Specifies the contents of an object's **script**. | set the script of <object> to <string> |
borderColor | Specifies the color of an object's border. | set the borderColor of <object> to {empty | <colorName> | <RGBColor>} set the borderColor of <line> of <field> to {empty | <colorName> | <RGBColor>} |
hilitePixel | Specifies which entry in the color table is used for the background color when an object, or text in an object, is highlighted. | set the hilitePixel of <object> to <colorNumber> |
unicodePlainText | Returns the contents of a field chunk as plain text. | set the unicodePlainText of [chunk of] field to string get the unicodePlainText of [chunk of] field |
patterns | Specifies all the patterns of an object, in shorthand form. | set the patterns of <object> to <patternsList> |
topMargin | Specifies how close text within an object can come to the object's upper edge, and how close objects in a group can come to the group's upper edge. | set the topMargin of {<button> | <field> | <group>} to <pixels> |
number | Specifies an object's position within a file, a card's position within a stack, or a control's layer on a card. | set the number of <card> to <number> get the number of <object> |
topLeft | Specifies the location of the specified object's upper left corner. | set the topLeft of <object> to left,top |
altID | Specifies an alternate ID for objects. | set the altID of <object> to <IDNumber> |
right | Specifies how far an object's right edge is from the left edge of the window or screen. | set the right of <object> to <pixels> |
focusPattern | Specifies the pattern used for an object's outline when it has the insertion point or is active focused. | set the focusPattern of <object> to {<patternNumber> | <imageID> | empty} |
topPattern | Specifies the pattern used to draw a three-D object's raised edge. | set the topPattern of <object> to {<patternNumber> | <imageID> | empty} |
foregroundColor | Specifies the color of object text and borders. | set the foregroundColor of <object> to {empty | <colorName> | <RGBColor>} set the foregroundColor of [<chunk> of] <field> to {empty| <colorName> | <RGBColor>} |
scrollbarWidth | Specifies the width of the scrollbar associated with a scrolling field or group. | set the scrollbarWidth of {<field> | <group>} to <pixels> |
threeDHilite | Specifies whether selected lines in a list field look like they're receding into the screen. | set the threeDHilite of <field> to {true | false} |
text | Specifies the text contained by a button or field or the binary data in an image. | set the text of {<button> | <field> | <image>} to <string> |
fixedLineHeight | Specifies whether the lines in a field are all the same height, or vary in height to fit the text on that line. | set the fixedLineHeight of <field> to {true | false} |
dontWrap | Specifies whether the text in a paragraph or field word-wraps when it reaches the field's right edge. | set the dontWrap [of <line>] of <field> to {true | false} |
borderPixel | Specifies which entry in the color table is used for the color of an object's border. | set the borderPixel of <object> to <colorNumber> |
shadowPixel | Specifies which entry in the color table is used for the color of an object's drop shadow or the background of a scrollbar. | set the shadowPixel of <object> to <colorNumber> |
showLines | Specifies whether dotted lines are shown on the text baselines of a field. | set the showLines of <field> to {true | false} |
listBehavior | Specifies whether a locked field behaves as a clickable list. | set the listBehavior of <field> to {true | false} |
mimeText | The **mimeText** property is not implemented and is reserved. | mimeText |
behavior | Allows an object to inherit its script handlers from another object. | set the behavior of <object> to {<button> | <stack>} |
metadata of field | The metadata property of a field chunk specifies additional information stored with the field chunk but not visible to the user. | set the metadata of <fieldChunk> to <string> |
customProperties | Specifies all the custom properties of an object that are in the current customPropertySet, along with their settings. | set the customProperties of <object> to <propertiesArray> set the customProperties[<propertySet>] of <object> to <propertiesArray> |
shadowColor | Specifies the color of an object's drop shadow or the background of a scrollbar. | set the shadowColor of <object> to {empty | <colorName> | <RGBColor>} |
borderWidth | Specifies the width of an object's border. | set the borderWidth of <object> to <pixelWidth> set the borderWidth of <line> of <field> to <pixelWidth> |
listIndex | Sets the index for a paragraph when an (ordered) listStyle is set . | set the listIndex of <line> of <field> to <index> |
textShift | Specifies how far text is shifted up or down from its baseline. | set the textShift of <chunk> of <field> to <pixels> |
textSize | Specifies the point size of text displayed by an object. | set the textSize of <object> to <pointSize> set the textSize of [<chunk> of] <field> to <pointSize> |
textHeight | Specifies the amount of space between lines of text in a field. | set the textHeight of <field> to <pixels> |
encoding | Returns the encoding of the specified piece of text. | the encoding of { button | graphic | group } the encoding of [<chunk> of] <field> |
formattedRect | Reports the rectangle that surrounds all the objects in a card or group. | get the formattedRect of {<card> | <group>} get the formattedRect of <chunk> of <field> |
shadowOffset | Specifies the size and direction of an object's drop shadow. | set the shadowOffset of <object> to <pixels> |
textFont | Specifies the font face of text in an object. | set the textFont of <object> to <fontName> [, <language>] set the textFont of [<chunk> of] <field> to <fontName> [, <language>] |
enabled | Specifies that an object is active and responds to user action. | set the enabled of <object> to {true | false} |
backgroundColor | Specifies an object's background color. | set the backgroundColor of <object> to {empty | <colorName> | <RGBColor>} set the backgroundColor [of <chunk>] [of <line>] of <field> to {empty| <colorName> | <RGBColor>} |
hiliteColor | Specifies the color of the background when an object, or text in an object, is highlighted. | set the hiliteColor [of <object>] to {empty | <colorName> | <RGBColor>} |
noncontiguousHilites | Specifies whether the user can select non-adjacent lines of a list field. | set the noncontiguousHilites of <field> to {true | false} |
dontSearch | Specifies whether the find command skips a field, group, or card. | set the dontSearch of <field> to {true | false} |
vScroll | Specifies the vertical scroll of a field, group, or stack. | set the vScroll of {<field> | <group>} to <pixels> get the scroll of <stack> |
padding | Determines the padding of the cells of a table in a field. | set the padding of line <lineNumber> of <fieldReference> to <pixels> |
allowKeyInField | Has no effect and is included in LiveCode for compatibility with imported SuperCard projects. | set the allowKeyInField to {true | false} |
dropShadow | Specifies the drop shadow to use for an object. | set the dropShadow of object to <propertiesArray> set the dropShadow[<propertyName>] of object to <propertyValue> |
charIndex | The character offset in the field of the start of the chunk. | get the charIndex of <fieldChunk> |
styledText | Specifies the contents of a field, with its text formatting represented as LiveCode styled text array. | set the styledText of <field> to <styledArray> |
textAlign | Specifies how text is aligned or justified in a field or button. | set the textAlign [of <line>] of {<button> | <field>} to {left | center | right} |
leftMargin | Specifies how close text within an object can come to the object's left edge, and how close objects in a group can come to the group's left edge. | set the leftMargin of {<button> | <field> | <group>} to <pixels> |
bottomPattern | Specifies the pattern of a three-D object's lowered edge. | set the bottomPattern of <object> to {empty | <patternNumber> | <imageID>} |
customPropertySets | Lists all the custom property sets that can apply to an object. | get the customPropertySets of <object> |
hilitePattern | Specifies the fill pattern used for the background when an object, or text in an object, is highlighted. | set the hilitePattern of <object> to {<patternNumber> | <imageID> | empty} |
autoTab | Specifies whether pressing Return (or Enter) moves to the next field. | set the autoTab of <field> to {true | false} |
sharedText | Specifies whether a grouped field's text is the same on all cards with that group. | set the sharedText of <field> to {true | false} |
visible | Specifies whether an object can be seen or is hidden. | set the [effective] visible of <object> to {true | false} |
shadowPattern | Specifies the pattern of an object's drop shadow. | set the shadowPattern of <object> to {<patternNumber> | <imageID> | empty} |
hGrid | Specifies whether lines are shown below each text line in a field. | set the hGrid [of line <lineNumber>] of <field> to {true | false} |
imageSource | Specifies an image to be displayed in place of the specified character in a field. | set the imageSource of <character> to {<imageID> | <imageName> | <imageURL> |empty} |
layer | Specifies the back-to-front order of objects on a card or the order of cards in a stack. | set the layer of <object> to {<layerNumber> | top | bottom} |
backgroundPattern | The **backgroundPattern** specifies the pattern used to draw an object's background. | set the backgroundPattern of <object> to {<patternNumber> | <imageID> | empty} |
vScrollbar | Specifies whether a field or group has a vertical scrollbar. | set the vScrollbar of {<field> | <group>} to {true | false} |
topColor | Specifies the color of a three-D object's raised edge. | set the topColor of <object> to {empty | <colorName> | <RGBColor>} |
toggleHilites | Specifies whether clicking a selected line in a list field deselects that line. | set the toggleHilites of <field> to {true | false} |
pageRanges | Splits the content of a field into pages based on the height of a field. | get the pageRanges of <field> |
bottom | Specifies how far an object's bottom edge is from the top of the window or screen. | set the bottom of <object> to <number> |
borderPattern | Specifies the pattern of an object's border. | set the borderPattern of <object> to {empty | <patternNumber> | <imageID>} |
colorOverlay | Specifies the color overlay to use for an object. | set the colorOverlay of object to <propertiesArray> set the colorOverlay[<propertyName>] of object to <propertyValue> |
height | Specifies the distance from an object's top edge to its bottom edge. | set the height of <object> to <numberOfPixels> |
outerGlow | Specifies the outer glow to use for an object. | set the outerglow of object to <propertiesArray> set the outerglow[<propertyName>] of object to <propertyValue> |
listIndent | Specifies the size of the margins used when indenting lists. | set the listIndent of <line> of <field> to 1 |
bottomPixel | Specifies which entry in the color table is used for the color of a three-D object's lowered edge. | set the bottomPixel of <object> to <colorNumber> |
traversalOn | Specifies whether a control can become the active (focused) control. | set the traversalOn of <object> to {true | false} |
rightIndent | Determines the indentation of a paragraph in a field. | set the rightIndent of <line> of <field> to <pixels> |
linkText | Attaches data to a section of text in a field. | set the linkText of <chunk> of <field> to <textString> |
plainText | Returns the contents of a field chunk as plain text. | set the plainText of [<chunk> of] <field> to <string> get the plainText of [<chunk> of] <field> |
cursorMovement | Sets the mechanism for moving the cursor in fields containing both left-to-right and right-to-left text. | set the cursorMovement of field to <mechanism> |
top | Specifies how far an object's top edge is from the top of the window or screen. | set the top of <object> to <numberOfPixels> |
rectangle | Specifies the area within which an object is drawn. | set the rectangle of <object> to <left>, <top>, <right>, <bottom> get the [effective] rectangle of <object> |
tabAlign | Specifies the alignment of tab stops in a field. | set the tabAlign [of line lineNumber] of field to tabAlignList |
invisible | Specifies whether an object is hidden. | set the invisible of <object> to {true | false} get the [effective] invisible of <object> |
layerMode | Specifies whether an object is dynamic or static. | set the layerMode of <object> to <mode> get the [effective] layerMode of <object> |
topPixel | Specifies which entry in the color table is used for the color of a three-D object's raised edge. | set the topPixel of <object> to <colorNumber> |
RTFText | Specifies the contents of a field, with its text formatting represented in RTF format. | set the RTFText of [<chunk> of] <field> to <RTFString> |
keyboardType | Configures the type of keyboard that is to be displayed. | set the keyboardType of <field> to <type> get the keyboardType of <field> |
bottomRight | Specifies the location of the specified object's lower right corner. | set the bottomRight of <object> to right,bottom |
vGrid | Specifies whether a field's tab stops are treated as cell boundaries. | set the vGrid [of line <lineNumber>] of <field> to {true | false} |
formattedLeft | Reports the distance between the left edge of the stack window and the leftmost object in a card or group. | get the formattedLeft of {<group> | <card>} get the formattedLeft of <chunk> of <field> |
foregroundPixel | Specifies which entry in the color table is used for an object's text and borders. | set the foregroundPixel of <object> to <colorNumber> |
unicodeTooltip | Specifies the explanatory text (UTF-16 string) that pops up in a small box when the user points to an object. | set the unicodeTooltip of object to <unicodeString> |
leftIndent | Determines the indentation of a paragraph in a field. | set the leftIndent of <line> of <field> to <pixels> |
bottomLeft | Specifies the location of the specified object's lower left corner. | set the bottomLeft of <object> to <left>, <bottom> |
innerShadow | Specifies the inner shadow to use for an object. | set the innerShadow of object to <propertiesArray> set the innerShadow[<propertyName>] of object to <propertyValue> |
location | Specifies where an object is. | set the location of <object> to <point> |
left | Specifies how far an object's left edge is from the left edge of the window or screen. | set the left of <object> to <numberOfPixels> |
showFocusBorder | Displays a border around the active control. | set the showFocusBorder of <control> to {true | false} |
formattedText | Unwraps hard-wrapped lines, or provides the hard-wrapped contents of a field. | set the formattedText of [<chunk> of] <field> to <string> get the formattedText of [<chunk> of] <field> |
textDirection | Specifies whether the field should lay out its contents in a left-to-right or right-to-left manner. | set the textDirection of field to <direction> |
unicodeText | Specifies the text in a field, represented as Unicode (double-byte characters). | set the unicodeText of [<chunk> of] <field> to <unicodeString> set the unicodeText of <button> to <unicodeString> |
listStyle | Specifies what type of list style is used for the line of text. | set the listStyle of <line> of <field> to <style> |
disabled | Specifies that an object is dimmed and does not respond to user action. | set the disabled of <object> to {true | false} |
hilitedLine | Specifies the numbers of the selected lines in a list field. | set the hilitedLine of <field> to <listOfLines> |
rightMargin | Specifies how close text within an object can come to the object's right edge, and how close objects in a group can come to the group's right edge. | set the rightMargin of {<button> | <field> | <group>} to <pixels> |
selected | Specifies whether an object is **selected**. | set the selected of <object> to {true | false} |
tabStops | Specifies the location of tab stops in a field. | set the tabStops [of line <lineNumber>] of <field> to <tabStopList> |
properties | Specifies some of an object's **properties** and their current values. | set the properties of <object> to <propertiesArray> |
colors | Specifies all the colors of an object, in shorthand form. | set the colors of <object> to <colorsList> |
hScroll | Specifies the horizontal scroll of a field or group. | set the hScroll of {<field> | <group>} to <pixels> |
ID | Reports the unique ID number assigned to an object. | set the ID of {image | stack} to <number> get the [{ long | abbreviated | short }] ID of <object> |
tabWidths | Specifies the width of columns in a field. | set the tabWidths [of line <lineNumber>] of <field> to <tabWidthList> |
customPropertySet | Specifies a set of custom properties applied to an object. | set the customPropertySet of object to {setName | empty} |
flagged | Underlines the chunk with a red dotted line. | set the flagged of <fieldChunk> to {true | false} |
backgroundPixel | Specifies which entry in the color table is used for an object's background color. | set the backgroundPixel of <object> to <colorNumber> |
pageHeights | Reports the height of each printed page if a field is printed. | get the pageHeights of <field> |
hScrollbar | Specifies whether a field or group has a horizontal scrollbar. | set the hScrollbar of {<field> | <group>} to {true | false} |
HTMLText | Specifies the contents of a field, including all text styles and paragraph formatting, represented as HTML tags and special characters represented as HTML entities. | set the HTMLText of [<chunk> of] <field> to <htmlString> get the [effective] HTMLText of [<chunk> of] <field> |
firstIndent | Determines the indentation of the first line of a paragraph in a field. | set the firstIndent [of <line>] of <field> to <pixels> |
formattedTop | Reports the distance between the top edge of the stack window and the topmost object in a card or group. | get the formattedTop of {<card> | <group>} get the formattedTop of <chunk> of <field> |
focusPixel | Specifies which entry in the color table is used for the color of an object's outline when it has the insertion point or is active focused. | set the focusPixel of <object> to <colorNumber> |
bottomColor | Specifies the color of a three-D object's lowered edge. | set the bottomColor of <object> to {empty | <colorName> | <RGBColor>} |
bottomMargin | Specifies how close text within an object can come to the object's lower edge, and how close objects in a group can come to the group's lower edge. | set the bottomMargin of {<button> | <field> | <group>} to <pixels> |
textStyle | Specifies the style or styles applied to text in an object. | set the textStyle of <object> to {empty | plain | <stylesList>} set the textStyle of [<chunk> of] <field> to {empty | plain | <stylesList>} set the textStyle[<style>] of object to {true | false} |
threeD | Specifies whether an object appears to stick out of or recede into the screen. | set the threeD of <object> to {true | false} |
width | The **width** of an object is the distance from its left edge to its right edge. | set the width of <object> to <numberOfPixels> |
showBorder | Specifies whether an outline is drawn around an object. | set the showBorder of <object> to {true | false} |
innerGlow | Specifies the inner glow to use for an object | set the innerGlow of object to <propertiesArray> set the innerGlow[<propertyName>] of object to <propertyValue> |
name | Specifies the name of an object. | set the [{ long | abbreviated | short }] name of <object> to <string> get the name |
owner | Reports which object is next in the object hierarchy. | get the [{ long | abbreviated | short }] owner of <object> |
returnKeyType | Configures the type of return key that is to be displayed on the keyboard. | set the returnKeyType of <field> to <type> get the returnKeyType of <field> |
wideMargins | Specifies the amount of blank space at the edges of a field. | set the wideMargins of <field> to {true | false} |
formattedHeight | Reports the height needed by an object to display its full contents without scrolling. | get the formattedHeight of <object> get the formattedHeight of [<chunk> of] <field> |
focusColor | Specifies the color of the outline around the active control or the field with the insertion point. | set the focusColor of <object> to {empty | <colorName> | <RGBColor>} |
customKeys | Lists the names of all the custom properties of an object. | set the customKeys of <object> to {<propertiesList> | empty} |
foregroundPattern | Specifies the pattern used for object text and borders. | set the foregroundPattern of <object> to {<patternNumber> | <imageID> | empty} set the foregroundPattern of [<chunk> of] <field> to {<patternNumber> | <imageID> | empty} |
hidden | Specifies whether a line of text (paragraph) of a field is hidden from the user. | set the hidden of <line> of <field> to {true | false} |
unicodeFormattedText | Unwraps hard-wrapped lines, or provides the hard-wrapped contents of a field. | set the unicodeFormattedText of [chunk of] field to string get the unicodeFormattedText of [chunk of] field |
spaceAbove | Determines the space above a paragraph in a field. | set the spaceAbove of <line> of <field> to <pixels> |