FormattedTableDataSetMargin
Method
|
Sets the margin to the cell, row or column.
Use a valid row index and pass the column index '-1' to set the
margin for the row. Use a valid column index and pass the row index
'-1' to set the margin for the column.
Namespace: Teigha.DatabaseServices
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public virtual void SetMargin(
int row,
int column,
CellMargins margin,
double value
)
Public Overridable Sub SetMargin (
row As Integer,
column As Integer,
margin As CellMargins,
value As Double
)
public:
virtual void SetMargin(
int row,
int column,
CellMargins margin,
double value
)
abstract SetMargin :
row : int *
column : int *
margin : CellMargins *
value : float -> unit
override SetMargin :
row : int *
column : int *
margin : CellMargins *
value : float -> unit
Parameters
- row Int32
- [in] Row index.
- column Int32
- [in] Column index.
- margin CellMargins
- [in] Margin type.
- value Double
- [in] Margin value.
Remarks
Margin type should
be a combination of the following values: Name Value kCellMarginTop
0x01 kCellMarginLeft 0x02 kCellMarginBottom 0x04 kCellMarginRight
0x08 kCellMarginHorzSpacing 0x10 kCellMarginVertSpacing 0x20
See Also