EditPoint2.Unindent Method

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

Namespace:  EnvDTE80
Assembly:  EnvDTE80 (in EnvDTE80.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.

Implements

EditPoint.Unindent(TextPoint, Int32)

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

EditPoint2 Interface

EnvDTE80 Namespace