Skip to main content

GridView.GetRowFooterCellText(Int32, GridColumn) Method

Returns the summary text displayed within a particular row footer cell.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

public virtual string GetRowFooterCellText(
    int rowHandle,
    GridColumn column
)

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.

See Also