Purpose

.Inset allows you to specify whether the inset attribute is applied a Static Text object.
 

Syntax

Setting:            ObjectReference.Inset = Value

Retrieving:       Variable = ObjectReference.Inset
 

Operation

ObjectReference is the Tag Name of the object
Value is the setting for the inset property (TRUE or 1 = inset, FALSE or 0 = not inset)
Variable is a numeric variable

 

Remarks
 

 

Example

To set the Inset property of a Static Text (Tag Name = CustomerNamePrompt):

CustomerNamePrompt.Inset = 1


To set the Inset property of a Static Text (Tag Name = CustomerNumberPrompt):

CustomerNumberPrompt.Inset = TRUE


To retrieve the value of .Inset from the same Static Text:

#CUSTOMERNUMBERPROMPT_INSET = CustomerNumberPrompt.Inset
 

Comment on this topic

Topic ID: 510065