DataControlField.InsertVisible Property

Definition

Gets a value indicating whether the DataControlField object is visible when its parent data-bound control is in insert mode.

C#
public virtual bool InsertVisible { get; set; }

Property Value

true if the field is visible when its parent data-bound control is rendered in insert mode; otherwise, false. The default value is true.

Remarks

A data-bound control is in insert mode when the state of the current display row is DataControlRowState.Insert.

The DetailsView control checks the value of this property before it renders a set of fields. If the InsertVisible property is false, the Visible property of the DetailsViewRow object is set to false.

The value of the InsertVisible property is stored in view state.

Applies to

Produkt Verzie
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also