FormattedTableDataSetOverride(Int32, Int32,
Int32, CellProperties) Method
|
Sets the override in the cell, row, column,
content or grid line in the cell, row, or column. Use a valid row
index and pass the column index '-1' to set the row property
overrides. Use a valid column index and pass the row index '-1' to
set the column property overrides.
Namespace: Teigha.DatabaseServices
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public virtual void SetOverride(
int row,
int column,
int content,
CellProperties cellProperty
)
Public Overridable Sub SetOverride (
row As Integer,
column As Integer,
content As Integer,
cellProperty As CellProperties
)
public:
virtual void SetOverride(
int row,
int column,
int content,
CellProperties cellProperty
)
abstract SetOverride :
row : int *
column : int *
content : int *
cellProperty : CellProperties -> unit
override SetOverride :
row : int *
column : int *
content : int *
cellProperty : CellProperties -> unit
Parameters
- row Int32
- [in] Row index.
- column Int32
- [in] Column index.
- content Int32
- [in] Content index.
- cellProperty CellProperties
- [in] Override.
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