PropertyGrid.SelectedObject 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 object for which the grid displays properties.
public:
property System::Object ^ SelectedObject { System::Object ^ get(); void set(System::Object ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.PropertyGrid+SelectedObjectConverter))]
public object SelectedObject { get; set; }
[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.PropertyGrid+SelectedObjectConverter))]
public object? SelectedObject { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.PropertyGrid+SelectedObjectConverter))>]
member this.SelectedObject : obj with get, set
Public Property SelectedObject As Object
Property Value
The first object in the object list. If there is no currently selected object the return is null
.
- Attributes
Remarks
The SelectedObject property sets a single object into the grid to be browsed. If multiple objects are being browsed, this property returns the first one in the list. If no objects are selected, null
is returned.
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET