View.SharedTag Property

 

Gets or sets an object that is shared across view instances of a particular MDI child.

Namespace:   Microsoft.ManagementConsole
Assembly:  Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)

Syntax

public object SharedTag { get; set; }
public:
property Object^ SharedTag {
    Object^ get();
    void set(Object^ value);
}
member SharedTag : Object with get, set
Public Property SharedTag As Object

Property Value

Type: System.Object

The shared tag object

Remarks

Gets null if the view has not been initialized. Set throws InvalidOperationException if the view has not been initialized or is shut down.

See Also

View Class
Microsoft.ManagementConsole Namespace

Return to top