GetCellBordersColor Method (ITable) Send Feedback
See Also 
Val[out]
Color of the specified type of Line for the border for the specified cell
Row
Index of the row of the cell with the specified type of Line for its border whose Color to get (see Remarks)
Column
Index of the column of the cell with the specified type of Line for its border whose Color to get (see Remarks)
LineType
Type of Line as defined in dsTableBordersLineType_e
Gets the Color of the specified type of Line for the border for the specified cell in this Table.

Syntax

Visual Basic 
Function GetCellBordersColor( _
   ByVal Row As System.Integer, _
   ByVal Column As System.Integer, _
   ByVal LineType As dsTableBordersLineType_e _
) As Color
C# 
Color GetCellBordersColor( 
   System.int Row,
   System.int Column,
   dsTableBordersLineType_e LineType
)
JavaScript 
GetCellBordersColor( 
   Row : Number,
   Column : Number,
   LineType : String
) : dsColor
COM native C++ 
HRESULT GetCellBordersColor( 
   LONG Row,
   LONG Column,
   dsTableBordersLineType_e LineType,
   IColor** Val
) 
C++ 
DSRESULT GetCellBordersColor( 
   long Row,
   long Column,
   dsTableBordersLineType_e LineType,
   dsColor** Val
) 

Parameters

Row
Index of the row of the cell with the specified type of Line for its border whose Color to get (see Remarks)
Column
Index of the column of the cell with the specified type of Line for its border whose Color to get (see Remarks)
LineType
Type of Line as defined in dsTableBordersLineType_e
Val[out] or Return Value
Color of the specified type of Line for the border for the specified cell

Remarks

To determine a valid index for the row or column:
Get the total number of... Using...
Rows ITable::TotalRowCount
Columns ITable::TotalColumnCount
 

See Also

Availability

DraftSight V1R6.0