IVsButtonBar::GetSize Method (Int32, Int32)

 

Gets the size of the button bar.

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

int GetSize(
	[OutAttribute] int% piWidth,
	int% piHeight
)

Parameters

piWidth
Type: System::Int32

[out] The width of the button bar

piHeight
Type: System::Int32

[ref] The height of the button bar

Return Value

Type: System::Int32

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

From textmgr.idl:

HRESULT IVsButtonBar::GetSize(
   [out] long *piWidth, long *piHeight
);

This method is called by the parent; clients need not call this unless writing another owner for the button bar.The width is a function of height.

Return to top
Show: