CommandAction Property
Gets or sets the command action.
Syntax
'Declaration Public Property CommandAction As Action(Of Object)
'Usage Dim instance As DelegateCommand Dim value As Action(Of Object) instance.CommandAction = value value = instance.CommandAction
public Action<object> CommandAction {get; set;}
public: property Action<Object^>^ CommandAction { Action<Object^>^ get(); void set ( Action<Object^>^ value); }
Property Value
The command action.Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also