Xceed Grid for WinForms v4.3 Documentation
Xceed.Editors.v2.6 Assembly / Xceed.Editors Namespace / TextBoxArea Class / ConvertSelectionToRawText Method
The index of the start of the selected edit text.
The length of the edit text selection.
The index of the start of the selected raw text.
The length of the raw text selection.


In This Topic
    ConvertSelectionToRawText Method
    In This Topic
    Converts the selected edit text to raw text.
    Syntax
    'Declaration
     
    Protected Overridable Sub ConvertSelectionToRawText( _
       ByVal editTextSelectionStart As Integer, _
       ByVal editTextSelectionLength As Integer, _
       ByRef rawTextSelectionStart As Integer, _
       ByRef rawTextSelectionLength As Integer _
    ) 
    'Usage
     
    Dim instance As TextBoxArea
    Dim editTextSelectionStart As Integer
    Dim editTextSelectionLength As Integer
    Dim rawTextSelectionStart As Integer
    Dim rawTextSelectionLength As Integer
     
    instance.ConvertSelectionToRawText(editTextSelectionStart, editTextSelectionLength, rawTextSelectionStart, rawTextSelectionLength)
    protected virtual void ConvertSelectionToRawText( 
       int editTextSelectionStart,
       int editTextSelectionLength,
       out int rawTextSelectionStart,
       out int rawTextSelectionLength
    )

    Parameters

    editTextSelectionStart
    The index of the start of the selected edit text.
    editTextSelectionLength
    The length of the edit text selection.
    rawTextSelectionStart
    The index of the start of the selected raw text.
    rawTextSelectionLength
    The length of the raw text selection.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also