.NET Framework Class Library
PropertyGrid.SelectedObject Property

Gets or sets the object for which the grid displays properties.

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)

Syntax

Visual Basic (Declaration)
Public Property SelectedObject As Object
Visual Basic (Usage)
Dim instance As PropertyGrid
Dim value As Object

value = instance.SelectedObject

instance.SelectedObject = value
C#
public Object SelectedObject { get; set; }
C++
public:
property Object^ SelectedObject {
    Object^ get ();
    void set (Object^ value);
}
J#
/** @property */
public Object get_SelectedObject ()

/** @property */
public void set_SelectedObject (Object value)
JScript
public function get SelectedObject () : Object

public function set SelectedObject (value : Object)

Property Value

The first object in the object list. If there is no currently selected object the return is a null reference (Nothing in Visual Basic).
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, a null reference (Nothing in Visual Basic) is returned.

Platforms

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

Version Information

.NET Framework

Supported in: 2.0, 1.1, 1.0
See Also

Tags :


Page view tracker