DataControlField.InsertVisible Property

Definition

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

public:
 virtual property bool InsertVisible { bool get(); void set(bool value); };
public virtual bool InsertVisible { get; set; }
member this.InsertVisible : bool with get, set
Public Overridable Property InsertVisible As Boolean

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

See also