GridView.GetRowFooterCellText(Int32, GridColumn) Method
Returns the summary text displayed within a particular row footer cell.
Namespace: DevExpress.XtraGrid.Views.Grid
Assembly: DevExpress.XtraGrid.v24.2.dll
Declaration
Parameters
Name | Type | Description |
---|---|---|
rowHandle | Int32 | An integer value specifying the group row handle. This identifies the row footer whose cell’s display text is to be obtained. |
column | GridColumn | A GridColumn object (or descendant) representing the column where the desired cell resides. |
Returns
Type | Description |
---|---|
String | A string value representing the summary text displayed within the specified row footer cell. |
Remarks
If any of method’s parameters is specified incorrectly (the specified row footer doesn’t display a summary value within the specified cell), the method returns an empty string.
Please refer to the Working with Summaries in Code. Custom Summaries topic for more information about obtaining summary values and their text formats.
Note
Detail pattern Views do not contain data and they are never displayed within XtraGrid. So, the GetRowFooterCellText member must not be invoked for these Views. The GetRowFooterCellText member can only be used with Views that display real data within the Grid Control. Use the following methods to access these Views with which an end user interacts at runtime.
- GridControl.MainView - returns the top most View in a grid;
- GridControl.FocusedView - returns the focused View;
- GridControl.DefaultView - returns the currently maximized View;
- the sender parameter of View specific events;
- GridView.GetDetailView - returns a detail clone View for a specific master row.