CGridView:SetTab CGridView:SetVal

CGridView:SetType


The SetType method sets the data type of a grid cell. Although the default cell type of "string" works for most applications, there may be occasions when the data need to be interpreted as other types of information.

Syntax

CGridView:SetType( nCol, nRow, data_type )

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

bullet.gif    Where data_type is a numeric code representing the type of information in the specified cell.

Remarks

The data_type is a numeric code that specifies the interpretation of the cell values, as defined in the table below. Pass the number when calling this method.

 

Data Type

Interpretation

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" string)

other (1)

String

Example

The following script sets the cell contents of (column 5, row 10) to a "string" value:

G = attach_gridview()

-- attach a grid on the Mira desktop

G:SetType(5,10,2)

-- set the type of cell (5,10) to 2 ("number")

Related Topics

CGridView class

GetType

SetVal

SetNum


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