{description}
{excerpt}Returns the 0\-based index of the worksheet in the collection of all sheets in the workbook.{excerpt}
{signature:C#}
 public int Position{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Position() As Integer
{signature}
{example}{code:csharp|title=C#}
int sheetPosition = ws.Position;{code}
{code:vb.net|title=vb.net}
Dim sheetPosition As Integer = ws.Position{code}

{example}