API Documentation > CorelDRAW > 2025-v26 > TextRange > IVGTextRange
TextRange.LeftIndent property
Gets/sets the amount by which the text has been left-indented
Syntax:
Property Get LeftIndent() As Double
Property Let LeftIndent(ByVal Value As Double)
Remarks:
The LeftIndent property returns or specifies the amount by which text is indented from the left side of the frame in a text range. All lines except for the first line of each paragraph are indented.
Examples:
The following VBA example sets the hanging indentation of the paragraph to 0.5".
Sub Test()
Dim d As Document
Dim s As Shape
Dim t As Text
Set d = CreateDocument
Set s = d.ActiveLayer.CreateParagraphText(3, 3, 5, 5, _
  "This is an example. This is an example. This is an " & _
  "example. This is an example. This is an example.")
Set t = s.Text
t.Story.LeftIndent = 0.5 
End Sub