GridCellGroup Object

Top  Previous  Next

Description

The GridCellGroup object is a collection of GridCell objects within a GridWindow.  This object is not creatable in script, but this object type is returned when using the GridWindow.GetAllCells(), GetCellGroup(), GetRow(), and GetColumn() methods, as seen in the examples below:

 

GridWindow1.GetAllCells().SetValue(12345);

GridWindow1.GetCellGroup(0, 1, 0, 1).SetValue(12345);

GridWindow1.GetRow(0).SetValue(12345);

GridWindow1.GetColumn(0).SetValue(12345);

 

Users cannot create instances of this type of object. However, users can access instances of this object type that have been created indirectly, for example as children of other objects. Users can also access any static properties and methods on this object type.

 

Inheritance Hierarchy: Object->GridCellGroup

 

Available In Editions:

Engineer

Mission

 

Timing Precision Mode

This page describes functionality in millisecond timing precision mode.

Click here to see the documentation for this object in nanosecond timing precision mode.

 

Properties

 

Methods

 

 

See also

GridWindow Guide