| Constructor |
| RowSet |
RowSet(String GridName) - Create a RowSet
Object for the specified grid. The object is created by the system.
The developer must NOT create objects of type RowSet |
| |
| Variables |
| String |
align - represents the Alignment property
of the Grid.Accessor Methods: getAlignment()/setAlignment() |
| Reserved |
arrItems- Collection
of Rows. Used Internally |
| Reserved |
arrItems- see ArrItems |
| String |
backgroundColor - represents the backgroundColor
property of the Grid.Accessor Methods: getbackgroundColor()/setBackgroundColor() |
| String |
backgroundImage - represents the backgroundImage
property of the Grid.Accessor Methods: getBackgroundImage()/setBackgroundImage() |
| String |
fontName - represents the fontName property
of the Grid.Accessor Methods: getFontName()/setFontName() |
| String |
fontSize - represents the fontSize property
of the Grid.Accessor Methods: getFontSize()/setFontSize() |
| String |
fontStyle - represents the fontStyle property
of the Grid.Accessor Methods: getForegroundColor()/setForegroundColor() |
| String |
foregroundColor - represents the foregroundColor
property of the Grid.Accessor Methods: getForegroundColor()/setForegroundColor() |
| Reserved |
object- refers to the
current object |
| Readonly |
parent- reference to the parent Grid object
|
| |
|
| [ Top
] |
| |
| Method Summary |
| Row |
add([Integer RowIndex])- adds a row at
the position specified by Rowindex. if the rowIndex is not passed
the row gets appended to the end of the grid |
| Row |
addRow([Integer RowIndex])- see addRow([Integer
RowIndex]) |
| void |
deleteRow(Integer RowIndex)- deletes the
row specified by RowIndex. if RowIndex is not passed the last row
in the grid is deleted |
| String |
getAlignment()- gets the Alignment for
the RowSet. The default alignment is DG_LEFT |
| String |
getBackgroundColor()- gets the background
color of the RowSet. The Default value is DG_NOCOLOR |
| String |
getBackgroundImage()- gets the backgroundImage
of the RowSet. If there is no backgroundImage "" (empty string) is
returned |
| Cell |
getCell(Integer RowIndex,Integer ColumnIndex)-
gets the cell at position RowIndex, ColumnIndex |
| String |
getFontName()- gets the FontName for the
RowSet. The default is verdana |
| String |
getFontSize()- gets the FontSize of the
RowSet. The default size is 10 |
| String |
getFontStyle()- gets the FontStyle of
the RowSet. The default style is DG_NONE |
| String |
getForegroundColor()- gets the foreground
color of the RowSet. |
| DeepGrid |
getGrid()- see getParent() |
| Integer |
getLength()- see getRowCount() |
| Reserved |
getObject()- Used Internally |
| DG_ROWSET |
getObjectID()- gets the Object type. i.e.
DG_ROWSET |
| DeepGrid |
getParent()- gets the parent Grid object |
| Row |
getRow(Integer rowIndex)- see Row(Integer
rowIndex) |
| Integer |
getRowCount()- gets the total number of
Rows |
| DeepGrid |
getTable()- see getParent() |
| Row |
Row(Integer rowIndx)- gets the Row object
of the Row at RowIndex |
| Row |
row(Integer rowIndex)- see Row(Integer
rowIndex) |
| void |
setAlignment(String Alignment)- sets the
Alignment for the RowSet. |
| void |
setAltColor(Boolean State, [Integer startFrom])-
sets the altColor property of the RowSet |
| void |
setBackgroundColor(String Color)- sets
the background color of the RowSet. Note:Use DG_NOCOLOR for transparency. |
| void |
setBackgroundImage(String Image)- sets
the background image of the RowSet to the image specified by 'Image'. |
| void |
setFont(String FontName, String FontStyle, Integer FontSize)-
sets the font properties of the RowSet. FontName is the name of the
font, FontStyle is the style of the font (DG_NONE, DG_PLAIN, DG_BOLD,
DG_ITALIC, DG_BOLDITALIC), FontSize is the size of the text. |
| void |
setFontName(String FontName)- sets the
FontName for the RowSet. |
| void |
setFontSize(Integer FontSize)- sets the
FontSize for the RowSet |
| void |
setFontStyle(String FontStyle)- sets the
FontStyle for the RowSet. The following are the predefined style constants
DG_NONE, DG_PLAIN, DG_BOLD, DG_ITALIC, DG_BOLDITALIC |
| void |
setForegroundColor(String Color)- sets
the foreground color of the RowSet. |
| |
|