FormattedTableDataGetGridVisibility Method
|
Returns the grid lineweight of the cell, row
or column. Use a valid row index and pass the column index '-1' to
get the row grid lineweight. Use a valid column index and pass the
row index '-1' to get the column grid lineweight.
Namespace: Teigha.DatabaseServices
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public virtual Visibility GetGridVisibility(
int row,
int column,
GridLineType gridLinetype
)
Public Overridable Function GetGridVisibility (
row As Integer,
column As Integer,
gridLinetype As GridLineType
) As Visibility
public:
virtual Visibility GetGridVisibility(
int row,
int column,
GridLineType gridLinetype
)
abstract GetGridVisibility :
row : int *
column : int *
gridLinetype : GridLineType -> Visibility
override GetGridVisibility :
row : int *
column : int *
gridLinetype : GridLineType -> Visibility
Parameters
- row Int32
- [in] Row index of the cell.
- column Int32
- [in] Column index of the cell.
- gridLinetype GridLineType
- [in] Grid linetype.
Return Value
Visibility
Visibility instance representing grid visibility.
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