| Constructor |
| Row |
Row(RowSet parentRowSet, [Integer RowIndex]) -
Creates a Row in the parentRowSet and at the position specified by
RowIndex. If RowIndex is not specified the row will be added at the
end. |
| |
| Variables |
| String |
align - represents the Alignment property
of the Row.Accessor Methods: getAlignment()/setAlignment() |
| Reserved |
arrCells - Collection
of Cells. Used Internally |
| Reserved |
arrcells - see arrCells
|
| String |
backgroundColor - represents the backgroundColor
property of the Row.Accessor Methods: getbackgroundColor()/setBackgroundColor() |
| String |
fontName - represents the fontName property
of the Row.Accessor Methods: getFontName()/setFontName() |
| String |
fontSize - represents the fontSize property
of the Row.Accessor Methods: getFontSize()/setFontSize() |
| String |
fontStyle - represents the fontStyle property
of the Row.Accessor Methods: getForegroundColor()/setForegroundColor() |
| String |
foregroundColor - represents the foregroundColor
property of the Row.Accessor Methods: getForegroundColor()/setForegroundColor() |
| Reserved |
object - refers to the
internal representation of the row. Used Internally |
| ReadOnly |
parent - reference to the parent RowSet
Object |
| Reserved |
pseudoRowNum - Used Internally |
| Reserved |
rowCreation - Used Internally |
| Boolean |
visible - Toggle switch for the visible
property of the Row. Accessor Methods : isVisible()/setVisible() |
| |
|
| [ Top
] |
| |
| Method Summary |
| Reserved |
addCell(Integer pseudoRowNumber, Integer ColumnIndex,
Array CellDetails) - Used Internally |
| Cell |
Cells(Integer ColumnIndex) - gets the
Cell object at column specified by ColumnIndex in the current row
|
| Cell |
cells(Integer ColumnIndex) - see Cells(Integer
ColumnIndex) |
| void |
deleteRow() - deletes the current Row |
| String |
getAlignment()- gets the Alignment for
the Row. The default alignment is DG_LEFT |
| String |
getBackgroundColor()- gets the background
color of the Row. The Default value is DG_NOCOLOR |
| Cell |
getCell(Integer ColumnIndex) - see Cells(Integer
ColumnIndex) |
| String |
getFontName()- gets the FontName for the
Row. The default is verdana |
| String |
getFontSize()- gets the FontSize of the
Row. The default size is 10 |
| String |
getFontStyle()- gets the FontStyle of
the Row. The default style is DG_NONE |
| String |
getForegroundColor()- gets the foreground
color of the Row. |
| DeepGrid |
getGrid() - see getTable() |
| Reserved |
getObject() - Used Internally |
| DG_ROW |
getObjectID() - gets the Object type.
i.e. DG_ROW |
| RowSet |
getParent() - gets the Parent RowSet Object |
| Integer |
getRowIndex() - gets the index of the
current row |
| RowSet |
getRowSet() - see getParent() |
| DeepGrid |
getTable() - gets the Grid object to which
this row belongs |
| Boolean |
isVisible() - gets the visible property
of the row |
| void |
setAlignment(String Alignment)- sets the
Alignment for the Row. |
| void |
setBackgroundColor(String Color)- sets
the background color of the Row. Note:Use DG_NOCOLOR for transparency. |
| void |
setFont(String FontName, String FontStyle, Integer FontSize)-
sets the font properties of the Row. 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 Row. |
| void |
setFontSize(Integer FontSize)- sets the
FontSize for the Row |
| void |
setFontStyle(String FontStyle)- sets the
FontStyle for the Row. 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 Row. |
| void |
setVisible(Boolean State) - sets the visible
property for the row |