DesignerTheme.ReadOnly Property

Definition

Gets a value that indicates whether the designer theme is read-only.

public:
 property bool ReadOnly { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool ReadOnly { get; }
[<System.ComponentModel.Browsable(false)>]
member this.ReadOnly : bool
Public ReadOnly Property ReadOnly As Boolean

Property Value

true if DesignerTheme is read-only; otherwise, false. The default is false.

Attributes

Remarks

If the WorkflowTheme that the DesignerTheme is initialized with is not a null reference (Nothing in Visual Basic), ReadOnly obtains its value from the WorkflowTheme.ReadOnly property. If the WorkflowTheme is a null reference (Nothing), ReadOnly is false.

If the WorkflowTheme is assigned to the WorkflowTheme.CurrentTheme, the ReadOnly property is set to true, and properties on all designer themes associated with this theme cannot be changed. If required, properties can be set after loading the theme but before assigning it to the CurrentTheme.

Applies to