WorkflowTheme.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 or sets a value that indicates whether the workflow theme is read-only.
public:
property bool ReadOnly { bool get(); void set(bool value); };
public bool ReadOnly { get; set; }
member this.ReadOnly : bool with get, set
Public Property ReadOnly As Boolean
Property Value
true
if the workflow theme is read-only; otherwise, false
. The default is false
.
Examples
The following example shows how to set and un-set the ReadOnly
property for the purposes of setting the AmbientTheme property. This example is from the Tracking Profile Designer SDK sample. For more information, see Tracking Profile Designer Sample.
public WorkflowDesignerControl()
{
InitializeComponent();
WorkflowTheme.CurrentTheme.ReadOnly = false;
WorkflowTheme.CurrentTheme.AmbientTheme.ShowConfigErrors = false;
WorkflowTheme.CurrentTheme.ReadOnly = true;
}
Public Sub New()
InitializeComponent()
WorkflowTheme.CurrentTheme.ReadOnly = False
WorkflowTheme.CurrentTheme.AmbientTheme.ShowConfigErrors = False
WorkflowTheme.CurrentTheme.ReadOnly = True
End Sub