Método IVsRunningDocumentTable.SaveDocuments (UInt32, IVsHierarchy, UInt32, UInt32)
Publicado: abril de 2016
Salva os documentos.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int SaveDocuments(
uint grfSaveOpts,
IVsHierarchy pHier,
uint itemid,
uint docCookie
)
int SaveDocuments(
unsigned int grfSaveOpts,
IVsHierarchy^ pHier,
unsigned int itemid,
unsigned int docCookie
)
abstract SaveDocuments :
grfSaveOpts:uint32 *
pHier:IVsHierarchy *
itemid:uint32 *
docCookie:uint32 -> int
Function SaveDocuments (
grfSaveOpts As UInteger,
pHier As IVsHierarchy,
itemid As UInteger,
docCookie As UInteger
) As Integer
Parâmetros
- grfSaveOpts
[in] Salvar opções cujos valores são obtidos a partir do __VSRDTSAVEOPTIONS enumeração.
- pHier
[in] O IVsHierarchy interface que é proprietário do documento.
- itemid
[in] Identificador de item dos documentos salvos.Este é um identificador exclusivo ou pode ser um dos seguintes valores: VSITEMID_NIL, VSITEMID_ROOT, ou VSITEMID_SELECTION.
- docCookie
[in] Valor abstrato que representam os documentos salvos.
Valor de retorno
Type: System.Int32
Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.
Comentários
COM assinatura
De vsshell.idl:
HRESULT IVsRunningDocumentTable::SaveDocuments(
[in] VSRDTSAVEOPTIONS grfSaveOpts,
[in] IVsHierarchy *pHier,
[in] VSITEMID itemid,
[in] VSCOOKIE docCookie
);
O docCookie parâmetro é o mesmo valor que é retornado de FindAndLockDocument ou RegisterAndLockDocument métodos.
Consulte também
Interface IVsRunningDocumentTable
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo