Scripting Definition Lists
- Enabled
-
Enables or disables the control. Enabled means that the user can select the element, for example to edit a field or button. Disabled displays the element grayed out and not accessible for the user.
- FieldName
-
Returns the name of the element. This property is read-only and cannot be changed.
- Name
-
Returns the name of this element. This property is read-only and cannot be changed.
- ResetForeColor
-
Resets the foreground color the label font back to the default value.
- SetForeColor
-
Sets the foreground color of the font for a validation form element.
SetForeColor(ByVal R As Long, ByVal G As Long, ByVal B As Long)
-
R - You can select a value for red within the range from 0 to 255.
-
G - You can select a value for green within the range from 0 to 255.
-
B - You can select a value for blue within the range from 0 to 255.
-
- Text
-
Sets or returns the text of the element that is then displayed on the form for a label, button, group or tab.
You can use vbCr, vbLf and vbNewLine to force a line break, but those work only when used for rich client modules. For thin clients if you need multiline text you need to insert several elements each having a single line text.
In previous versions the text element may be used for localization. For Tungsten TotalAgility 5.5 and later versions it is highly recommended to remove any related script code for localization issues and use the built-in function for the translation instead. For more information, see Transformation Designer Help.
- Visible
-
Displays or hides the element on the validation form and pane.
- bDiagonal
-
If set to TRUE, diagonal connections are considered in defining a blob. If set to FALSE, only those pixels that are connected horizontally or vertically are considered to define a blob.
- MaxHeight
-
Defines the maximum height of a blob in pixels.
- MaxMass
-
Defines the maximum number of pixels for a blob.
- MaxProportion
-
Defines the maximum proportion for a blob. Proportion is the ratio (in percent) of black pixels in comparison to the pixels of the bounding rectangle, which is the minimal rectangle that surrounds a blob. Common ranges for proportions are: hand written signatures 5-30%, handprinted text 20-50%, machine printed text 30-80%.
- MaxWidth
-
Defines the maximum width of a blob in pixels.
- MinHeight
-
Defines the minimum height of a blob in pixels.
- MinSeparation
-
Minimum distance in pixels between a blob and its neighbors.
- MinWidth
-
Defines the minimum width of a blob in pixels.
- pImage
-
The CscImage object on which the blobs are detected.
- ActivePageIndex
-
Returns the zero-based page index of the displayed page. For the Thin Clients this status property may return an unpredictable value during the DocumentLoaded event.
- DisplayPage
-
Displays the page specified by zero-based page index in the document viewer.
DisplayPage(ByVal PageIndex As Long)
- XOffSet
-
Returns the offset in X direction. This property is read-only and cannot be changed.
- YOffSet
-
Returns the offset in Y direction. This property is read-only and cannot be changed.
- ZoomIn
-
Increases the size of the document in the viewer.
- ZoomMode
-
Sets or returns one of the following zoom modes for the document viewer.
-
CSCBestFit - Displays document so that it is fully visible inside viewer.
-
CSCFitToWidth - Displays document so that it fits to width of viewer.
-
CSCFitToHeight - Displays document so that it fits to height of viewer.
-
CSCCustomZoom - Document resized according to current zoom value.
-
- ZoomOut
-
Decreases the size of the document in the viewer.
- ZoomToRectangle
-
Zooms to a rectangle in the document defined by the left position "x," the top position "y," width, and height.
ZoomToRectangle(ByVal x As Long, ByVal y As Long, ByVal Width As Long, ByVal Height As Long)
- ZoomValue
-
Sets or returns the zoom value.