Skip to main content
A newer version of this page is available. .
Tab

ASPxGridView.FindRowCellTemplateControlByKey(Object, GridViewDataColumn, String) Method

Searches for the server control contained within the specified data cell‘s template.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public Control FindRowCellTemplateControlByKey(
    object rowKey,
    GridViewDataColumn gridViewDataColumn,
    string id
)

Parameters

Name Type Description
rowKey Object

An object that uniquely identifies the row.

gridViewDataColumn GridViewDataColumn

A GridViewDataColumn descendant that represents the data column where the requested cell resides. If null (Nothing in Visual Basic), the search is performed within all cells in the specified row.

id String

A String value that identifies the control within the specified cell.

Returns

Type Description
Control

A Control object that represents the control contained within the specified data cell’s template.

Remarks

For more information, see Templates.

See Also