Skip to main content

dxSpreadSheetIsEntireColumn(TRect) Method

Returns a value indicating whether the specified area contains one or more full columns in Table View‘s content area.

Declaration

function dxSpreadSheetIsEntireColumn(const AArea: TRect): Boolean;

Parameters

Name Type
AArea TRect

Returns

Type
Boolean

Remarks

The dxSpreadSheetIsEntireColumn and dxSpreadSheetIsEntireRow functions identify whether the height and width of the area, specified as the AArea parameter, correspond to the entire column‘s height and entire row‘s width in the Table View’s content area, respectively. The dxSpreadSheetIsEntireColumn function returns True if the top and bottom bounds of the specified area correspond to the 0 and dxSpreadSheetMaxRowIndex table row index values. Otherwise, this function returns False.

Note

In order to identify if at least one of the specified area’s dimensions corresponds to the largest dimension of the Table View row or column, use the dxSpreadSheetIsEntireRowOrColumn function instead.

See Also