Share via


PropertyGridObject.ReadOnly Property

Definition

Gets a value indicating whether the properties on the page are read-only.

protected:
 property bool ReadOnly { bool get(); };
[System.ComponentModel.Browsable(false)]
protected bool ReadOnly { get; }
member this.ReadOnly : bool
Protected ReadOnly Property ReadOnly As Boolean

Property Value

true if the properties are read-only; false if the properties are read/write.

Attributes

Examples

The following example writes the read-only state to the trace listener.

    Trace.WriteLine("PropertyGridObject.ReadOnly = " +
this.ReadOnly.ToString());

Remarks

This property is set in the PropertyGridObject(ModulePropertiesPage, Boolean) constructor.

Applies to