| Visual Basic (Declaration) | |
|---|---|
Public Property NonEditModeBehavior As NonEditModeBehavior | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As LiveCheckBoxColumn Dim value As NonEditModeBehavior instance.NonEditModeBehavior = value value = instance.NonEditModeBehavior | |
| C# | |
|---|---|
public NonEditModeBehavior NonEditModeBehavior {get; set;} | |
| C++/CLI | |
|---|---|
public: property NonEditModeBehavior NonEditModeBehavior { NonEditModeBehavior get(); void set ( NonEditModeBehavior value); } | |
Property Value
One of the NonEditModeBehavior values. The default is DisabledCheckBox.| Exception | Description |
|---|---|
| System.ArgumentException | The specified value is not one of the NonEditModeBehavior values. |
Use this property to specify the behavior of the LiveCheckBoxColumn when it is not in edit mode. Options include DisabledCheckBox, EnabledCheckBox, and Text.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code