FormattedTableDataSetGridLinetype Method
|
Sets the grid line color of the cell, row or
column. Use a valid row index and pass the column index '-1' to set
the grid line color for the row. Use a valid column index and pass
the row index '-1' to set the grid line color for the column.
Namespace: Teigha.DatabaseServices
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public virtual void SetGridLinetype(
int row,
int column,
GridLineType gridLinetype,
ObjectId value
)
Public Overridable Sub SetGridLinetype (
row As Integer,
column As Integer,
gridLinetype As GridLineType,
value As ObjectId
)
public:
virtual void SetGridLinetype(
int row,
int column,
GridLineType gridLinetype,
ObjectId value
)
abstract SetGridLinetype :
row : int *
column : int *
gridLinetype : GridLineType *
value : ObjectId -> unit
override SetGridLinetype :
row : int *
column : int *
gridLinetype : GridLineType *
value : ObjectId -> unit
Parameters
- row Int32
- [in] Row index.
- column Int32
- [in] Column index.
- gridLinetype GridLineType
- [in] Grid linetypes.
- value ObjectId
- [in] Object ID of the grid linetype to set.
Remarks
Grid linetype
should take one of the following values: Name Value
kInvalidGridLine 0x00 kHorzTop 0x01 kHorzInside 0x02 kHorzBottom
0x04 kVertLeft 0x08 kVertInside 0x10 kVertRight 0x20
kHorzGridLineTypes kHorzTop|kHorzBottom|kHorzInside
kVertGridLineTypes kVertLeft|kVertRight|kVertInside
kOuterGridLineTypes kHorzTop|kHorzBottom|kVertLeft|kVertRight
kInnerGridLineTypes kHorzInside|kVertInside kAllGridLineTypes
kOuterGridLineTypes|kInnerGridLineTypes
See Also