TreeView.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 default image shown when a TreeNode 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.ImageKeyConverter))]
[System.Windows.Forms.RelatedImageList("ImageList")]
public string SelectedImageKey { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.ImageKeyConverter))>]
[<System.Windows.Forms.RelatedImageList("ImageList")>]
member this.SelectedImageKey : string with get, set
Public Property SelectedImageKey As String
Property Value
The key of the default image shown when a TreeNode is in a selected state.
- Attributes
Remarks
If a TreeNode does not have a selected image set, the image specified by the SelectedImageKey property will be shown when the node is not selected.
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, the SelectedImageKey is automatically set to an empty string ("").