Visual Basic (Declaration) | |
---|---|
<CategoryAttribute("Behavior")> <DescriptionAttribute("Whether the interface blocks when this control raises a callback.")> <DefaultValueAttribute()> Public Property Blocking As Boolean |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As LiveCheckBoxList Dim value As Boolean instance.Blocking = value value = instance.Blocking |
C# | |
---|---|
[CategoryAttribute("Behavior")] [DescriptionAttribute("Whether the interface blocks when this control raises a callback.")] [DefaultValueAttribute()] public bool Blocking {get; set;} |
C++/CLI | |
---|---|
[CategoryAttribute("Behavior")] [DescriptionAttribute("Whether the interface blocks when this control raises a callback.")] [DefaultValueAttribute()] public: property bool Blocking { bool get(); void set ( bool value); } |
Property Value
true if other PowerWEB controls should be disabled while the PowerWEB control has a pending callback.Although callbacks always occur asynchronously, when this property is true, a simulated blocking will be used. The interface will be disabled and updated as busy when a callback is pending (although the code itself will not block).
Note Only PowerWEB controls will be blocked. The user will still be able to interact with non-PowerWEB controls.
Target Platforms: Microsoft .NET Framework 2.0