Intersoft ClientUI Documentation
CommandParameter Property
See Also  Send Feedback
Intersoft.Client.UI.Aqua.UXCollection Namespace > UXTreeViewItem Class : CommandParameter Property






Gets or sets the parameter to pass to the Command property.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Action")>
Public Property CommandParameter As Object
Visual Basic (Usage)Copy Code
Dim instance As UXTreeViewItem
Dim value As Object
 
instance.CommandParameter = value
 
value = instance.CommandParameter
C# 
[CategoryAttribute("Action")]
public object CommandParameter {get; set;}
Delphi 
public read-write property CommandParameter: TObject; 
JScript 
CategoryAttribute("Action")
public function get,set CommandParameter : Object
Managed Extensions for C++ 
[CategoryAttribute("Action")]
public: __property Object* get_CommandParameter();
public: __property void set_CommandParameter( 
   Object* value
);
C++/CLI 
[CategoryAttribute("Action")]
public:
property Object^ CommandParameter {
   Object^ get();
   void set (    Object^ value);
}

Remarks

UXTreeViewItem implements ICommandSource interface which exposes Command, CommandParameter and CommandTarget property. You can assign a command to a UXTreeViewItem by setting its Command property to the target command existed in your application. With commanding, you can separate the actual logic of the command from the command definition, which is ideal for MVVM pattern application. To learn about MVVM pattern, see MVVM Pattern Overview.

For more information on how to implement routed command in your application, see How-to: Implement a RoutedCommand. For more information about the basics of commanding concept, see Commanding Overview.

Depending on the scenarios you want to achieve, you may want to evaluate when to use command or selection in your application. It's best practice to use commanding when you have a particular action to execute when a node is selected. However, if you simply wish to capture the current selection in the control, please use the SelectedItem or SelectedItems property.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.