IVsSplitter::GetSizeExtents Method (Int32, Int32, Int32, Int32)
Visual Studio 2015
Returns the minimums and maximums for this pane (E_NOTIMPL is allowed; 0 and full screen are defaults).
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
int GetSizeExtents( [OutAttribute] int% piMinHorz, [OutAttribute] int% piMaxHorz, [OutAttribute] int% piMinVert, [OutAttribute] int% piMaxVert )
Parameters
- piMinHorz
-
Type:
System::Int32
[out] The minimum horizontal size.
- piMaxHorz
-
Type:
System::Int32
[out] The maximum horizontal size.
- piMinVert
-
Type:
System::Int32
[out] The minimum vertical size.
- piMaxVert
-
Type:
System::Int32
[out] The maximum vertical size.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From textmgr.idl:
HRESULT IVsSplitter::GetSizeExtents( [out] long *piMinHorz, [out] long *piMaxHorz, [out] long *piMinVert, [out] long *piMaxVert );
Show: