VsTextBufferClass.GetSize(Int32) Method

Definition

Gets the buffer size.

public:
 virtual int GetSize([Runtime::InteropServices::Out] int % piLength) = Microsoft::VisualStudio::TextManager::Interop::IVsTextBuffer::GetSize;
public:
 virtual int GetSize([Runtime::InteropServices::Out] int % piLength);
 virtual int GetSize([Runtime::InteropServices::Out] int & piLength);
public virtual int GetSize (out int piLength);
abstract member GetSize : int -> int
override this.GetSize : int -> int
Public Overridable Function GetSize (ByRef piLength As Integer) As Integer

Parameters

piLength
Int32

[out] Pointer to the size of the buffer, which is not necessarily the same value as the size of the buffer's internally-allocated memory or the size of the file (if any) represented by the buffer.

Returns

If the method succeeds, returns S_OK; otherwise, returns an error code.

Implements

Applies to