CGridView:SetVal


The SetVal method sets the contents and data type of a grid cell.

Syntax

CGridView:SetVal( nCol, nRow, Value, data_type )

bullet.gif     nCol, and nRow are the coordinates of the cell to set.

bullet.gif    Where Value is the value to set.

bullet.gif    The data_type is a number describing the type of Value. See Remarks, below.

Remarks

The data_type number specifies the interpretation of Value, as defined in the table below.

 

Data Type

Value Type

1

String

2

Number

3

Boolean true or false

4

Time, as a string

5

Currency, as a string

10

Special time (hh:mm:ss.sss)

11

Special date (yyyy/mm/dd)

12

Special degrees (dd:mm:ss.sss or +dd°mm'ss.sss")

other (1)

String

Example

The following script sets the cell contents for columns 5 and 6 in row 10:

G = new_gridview("my_table", GridParams)

-- create a CGridView window

G:SetVal(5, 10, "my data", 1)

-- set a string (data type=1) in cell (5,10)

G:SetVal(6, 10, 15.35, 2)

-- set a number (data type=2) in cell (6,10)

Related Topics

CGridView class, GetVal, SetStr, SetNum, SetType


Mira Pro x64 Script User's Guide, Copyright Ⓒ 2023 Mirametrics, Inc. All Rights Reserved.