IVsTextBuffer.InitializeContent Method

Initializes the content of the text buffer.

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

Syntax

'Declaration
Function InitializeContent ( _
    pszText As String, _
    iLength As Integer _
) As Integer
int InitializeContent(
    string pszText,
    int iLength
)
int InitializeContent(
    [InAttribute] String^ pszText, 
    [InAttribute] int iLength
)
abstract InitializeContent : 
        pszText:string * 
        iLength:int -> int 
function InitializeContent(
    pszText : String, 
    iLength : int
) : int

Parameters

  • pszText
    Type: System.String
    [in] Text to insert into the buffer.
  • iLength
    Type: System.Int32
    [in] Number of characters to be inserted.

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 textmgr.idl:

HRESULT IVsTextBuffer::InitializeContent(
   [in] const WCHAR *pszText,
   [in] long iLength
);

This method will fail unless called on a new untitled buffer.

.NET Framework Security

See Also

Reference

IVsTextBuffer Interface

Microsoft.VisualStudio.TextManager.Interop Namespace