Skip to main content

WizardControl.IsLockUpdate Property

Gets whether the XtraWizard control is immediately updated in response to changing its settings.

Namespace: DevExpress.XtraWizard

Assembly: DevExpress.XtraWizard.v23.2.dll

NuGet Package: DevExpress.Win

Declaration

[Browsable(false)]
public bool IsLockUpdate { get; }

Property Value

Type Description
Boolean

true if the XtraWizard control cannot be updated until unlocked; otherwise, false.

Remarks

After the WizardControl.BeginUpdate method is called, the XtraWizard is locked and is not immediately updated in response to changing its settings. To allow editor updates, the WizardControl.EndUpdate method should be called. These methods are used to perform multiple changes without updating the control after each modification.

Each BeginUpdate method call increments the internal counter by one. Each EndUpdate method decrements the counter value. The XtraWizard control can be updated only when the counter value is 0 (the initial value). The IsLockUpdate property returns true if the counter value is not 0.

See Also