Description
The window's pinned state. A window is considered to be unpinned if its pin icon is sideways, or it does not have a pin icon (e.g., when the window is floating, integrated, or dockable but not docked).
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property UnPinned() As Boolean
|
| [C#] |
|---|
public bool UnPinned {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_UnPinned(); public: __property void set_UnPinned(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_UnPinned(
VARIANT_BOOL * pVal
);
public: HRESULT put_UnPinned(
VARIANT_BOOL NewVal
);
|
| [Java] |
|---|
public bool getUnPinned();
public void setUnPinned(
bool
);
|
See Also