TreeNode.SelectedImageKey Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the key of the image displayed in the tree node when it is in a selected state.
public:
property System::String ^ SelectedImageKey { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.TreeViewImageKeyConverter))]
[System.Windows.Forms.RelatedImageList("TreeView.ImageList")]
public string SelectedImageKey { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.TreeViewImageKeyConverter))>]
[<System.Windows.Forms.RelatedImageList("TreeView.ImageList")>]
member this.SelectedImageKey : string with get, set
Public Property SelectedImageKey As String
Property Value
The key of the image displayed when the tree node is in a selected state.
- Attributes
Remarks
The image key returned by this property is contained in the ImageList property of the parent TreeView control.
SelectedImageKey and SelectedImageIndex are mutually exclusive, meaning if one is set, the other is set to an invalid value and ignored. If you set the SelectedImageKey property, the SelectedImageIndex property is automatically set to -1. Alternatively, if you set the SelectedImageIndex property, SelectedImageKey is automatically set to an empty string ("").