WinStudio
IWSFormComponent interface, grid objects
Sets the value of a row/column in a grid component.
object.SetGridValueByColumnName( integer, string1, string2 )
Part |
Description |
| object | Required. A reference to a grid object. |
| integer | Required. The row number. |
| string1 | Required. The column name. |
| string2 | Required. The value being set. |
Sub Main()
Dim iRow As Integer
iRow = 1
ThisForm.Components("FormCollectionGrid"). _
SetGridValueByColumnName(iRow, "OutputFormatDescGridCol", "New Value")
End Sub