DataControlField.InsertVisible Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.