Label property (WinStudio scripts)
Applies To
IWSFormComponent interface
Definition
Returns a string that is the label for the component. Read-only.
Syntax
object.Label
Part | Description |
object | Required. A reference to a form component object. |
Example
Sub Main() Application.ShowMessage("The label on the other button is: " _ & ThisForm.Components("ScriptButton").Label) End Sub