FormViewRow.RowType 属性

定义

获取 FormViewRow 对象的行类型。

public:
 virtual property System::Web::UI::WebControls::DataControlRowType RowType { System::Web::UI::WebControls::DataControlRowType get(); };
public virtual System.Web.UI.WebControls.DataControlRowType RowType { get; }
member this.RowType : System.Web.UI.WebControls.DataControlRowType
Public Overridable ReadOnly Property RowType As DataControlRowType

属性值

DataControlRowType 值之一。

注解

RowType使用 属性确定对象表示FormViewRow的行的类型。 下表列出了不同的行类型值。

行类型 说明
DataControlRowType.DataRow 控件中的数据 FormView 行。
DataControlRowType.EmptyDataRow 控件中的 FormView 空数据行。 当没有要显示的记录时,空数据行将显示在 控件中 FormView
DataControlRowType.Footer 控件中的 FormView 页脚行。
DataControlRowType.Header 控件中的 FormView 标题行。
DataControlRowType.Pager 控件中的 FormView 页码行。
DataControlRowType.Separator 控件中的 FormView 分隔符行。

此属性通常用于在执行操作之前确定行的类型。

适用于

另请参阅