WinStudio
IWSFormComponent interface
Retrieves the value in the specified form component and returns it as a string. If the component is a grid component (such as a column), this property works on whatever record is selected at the time this property is called. Read-only.
object.DisplayedValue
Part |
Description |
object | Required. A reference to a form component object. |
Sub Main() Dim oValue As String oValue = ThisForm.Components("gridColumn1").DisplayedValue Application.ShowMessage(oValue) End Sub