ExecuteCommand Property (MenuCommand)
In This Topic
This method executes the command.
Syntax
'Declaration
<JsonAttribute("executeCommand")>
<JsonConverterAttribute(C1.JsonNet.Converters.FunctionConverter)>
Public Property ExecuteCommand As System.String
'Usage
Dim instance As MenuCommand
Dim value As System.String
instance.ExecuteCommand = value
value = instance.ExecuteCommand
[Json("executeCommand")]
[JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
public System.string ExecuteCommand {get; set;}
public read-write property ExecuteCommand: System.String;
JsonAttribute("executeCommand")
JsonConverterAttribute(C1.JsonNet.Converters.FunctionConverter)
public function get,set ExecuteCommand : System.String
[Json("executeCommand")]
[JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
public: __property System.string* get_ExecuteCommand();
public: __property void set_ExecuteCommand(
System.string* value
);
[Json("executeCommand")]
[JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
public:
property System.String^ ExecuteCommand {
System.String^ get();
void set ( System.String^ value);
}
See Also