다음을 통해 공유


IVsWindowPane.SaveViewState Method

Saves a view state of a document window.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

Syntax

‘선언
Function SaveViewState ( _
    pStream As IStream _
) As Integer
‘사용 방법
Dim instance As IVsWindowPane
Dim pStream As IStream
Dim returnValue As Integer

returnValue = instance.SaveViewState(pStream)
int SaveViewState(
    IStream pStream
)
int SaveViewState(
    [InAttribute] IStream^ pStream
)
function SaveViewState(
    pStream : IStream
) : int

Parameters

Return Value

Type: System.Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsWindowPane::SaveViewState(
   [in] IStream *pstream
);

SaveViewState is called when the window pane in question is associated with a document view object. SaveViewState is not called for tool windows. If you want to implement persistence for your tool windows, you have to provide the implementation yourself. The Visual Studio environment only persists the tool window layout.

Permissions

See Also

Reference

IVsWindowPane Interface

IVsWindowPane Members

Microsoft.VisualStudio.Shell.Interop Namespace