EditPoint.Unindent Method

Removes the indent characters from the selected lines by the given number of indentation levels.

Namespace:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Syntax

'Declaration
Sub Unindent ( _
    Point As TextPoint, _
    Count As Integer _
)
void Unindent(
    TextPoint Point,
    int Count
)
void Unindent(
    [InAttribute] TextPoint^ Point, 
    [InAttribute] int Count
)
abstract Unindent : 
        Point:TextPoint * 
        Count:int -> unit
function Unindent(
    Point : TextPoint, 
    Count : int
)

Parameters

  • Point
    Type: EnvDTE.TextPoint

    Optional. The endpoint. Defaults to the endpoint, causing the current line in the buffer to be outdented. The default value is one indentation level.

  • Count
    Type: System.Int32

    Optional. The number of display columns to indent each line. The default is 1.

Remarks

Unindent removes Count levels of indentation from each line between the edit point and Point, including the lines that contain these endpoints. The number of columns that display in a level of indentation is determined by a global setting. Tabs and characters are deleted and inserted as necessary to remove one indentation level according to the current global settings for tab size and indent level size.

If Count is negative, then Unindent performs similarly to Indent.

Unindent fails if Count is greater than or equal to 10,000.

Examples

Sub UnindentExample()
  ' Before running this example, open a text document.
  Dim objTD As TextDocument
  Dim objEP As EditPoint

  objTD = DTE.ActiveDocument.Object("TextDocument")
  objEP = objTD.StartPoint.CreateEditPoint
  objEP.Indent(,10)
  objEP.Unindent(,5)
End Sub

.NET Framework Security

See Also

Reference

EditPoint Interface

EnvDTE Namespace