{description}
{excerpt}Sets or returns an {{int}} that represents the x position of line numbers in twips. One twip = \(1/20 pt\) or \( 1/1440 in\){excerpt}
{signature:C#}
 public int LineNumberX{ get; set; }
{signature}{signature:vb.net}
Public Property LineNumberX() As Integer
{signature}
{remarks}MS Word equivalent: File > Page Setup... > Layout tab > Preview section \(make sure Apply To: This Section is selected\) > Line Numbers... button > From text:

{remarks}
{example}{code:csharp|title=C#}

          //--- Return LineNumberX
          int lineNumberX = oSection.LineNumberX;

          //--- Set LineNumberX to .2 inches
          oSection.LineNumberX = 288;
        {code}
{code:vb.net|title=vb.net}

          '--- Return LineNumberX
          Dim lineNumberX As Integer = oSection.LineNumberX

          '--- Set LineNumberX to .2 inches
          oSection.LineNumberX = 288
        {code}

{example}