Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

dxSpreadSheetIsEntireColumn(TRect) Method

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

#Declaration

Delphi
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