IVsWindowView Interface

Definition

Controls part of the client area in a window. One of several interfaces you can implement on the the DocView or ViewHelper object to override other interfaces. Rarely used.

public interface class IVsWindowView
public interface class IVsWindowView
__interface IVsWindowView
[System.Runtime.InteropServices.Guid("7E7C4B21-079F-4830-9ED5-E0CB0BF281F1")]
[System.Runtime.InteropServices.InterfaceType(1)]
public interface IVsWindowView
[System.Runtime.InteropServices.Guid("7E7C4B21-079F-4830-9ED5-E0CB0BF281F1")]
[System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
public interface IVsWindowView
[<System.Runtime.InteropServices.Guid("7E7C4B21-079F-4830-9ED5-E0CB0BF281F1")>]
[<System.Runtime.InteropServices.InterfaceType(1)>]
type IVsWindowView = interface
[<System.Runtime.InteropServices.Guid("7E7C4B21-079F-4830-9ED5-E0CB0BF281F1")>]
[<System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)>]
type IVsWindowView = interface
Public Interface IVsWindowView
Attributes

Remarks

To override the existing implementation on the DocView or ViewHelper objects, implement IVsWindowView on an object. Use the SetProperty method of the IVsWindowFrame interface to, in effect, register the overriding interface. The SetProperty method takes an enumerated value (use the VSFPROPID_DocView or VSFPROPID_ViewHelper as appropriate) and the implementing object as arguments.

Methods

GetGuidProperty(Int32, Guid)

Retrieves the value of a GUID property.

GetProperty(Int32, Object)

Retrieves the value of a property.

SetGuidProperty(Int32, Guid)

Set the value of a GUID property.

SetProperty(Int32, Object)

Set the value of a property.

Applies to