CanExecuteCommand Property (MenuCommand)
In This Topic
This method returns a Boolean value that determines whether the controller can execute the command.
Syntax
'Declaration
<JsonAttribute("canExecuteCommand")>
<JsonConverterAttribute(C1.JsonNet.Converters.FunctionConverter)>
Public Property CanExecuteCommand As System.String
'Usage
Dim instance As MenuCommand
Dim value As System.String
instance.CanExecuteCommand = value
value = instance.CanExecuteCommand
[Json("canExecuteCommand")]
[JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
public System.string CanExecuteCommand {get; set;}
public read-write property CanExecuteCommand: System.String;
JsonAttribute("canExecuteCommand")
JsonConverterAttribute(C1.JsonNet.Converters.FunctionConverter)
public function get,set CanExecuteCommand : System.String
[Json("canExecuteCommand")]
[JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
public: __property System.string* get_CanExecuteCommand();
public: __property void set_CanExecuteCommand(
System.string* value
);
[Json("canExecuteCommand")]
[JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
public:
property System.String^ CanExecuteCommand {
System.String^ get();
void set ( System.String^ value);
}
See Also