PropertyGridObject.ReadOnly 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 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.