Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns the 0-based index of the slide in the collection of all slides in the presentation.

{signature}
{example}{code:csharp|title=C#}
int slidePosition = slide.Position;
{code}
{code:vbnet|title=vb.net
}
Dim slidePosition As Integer = slide.Position{code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns the 0\-based index of the slide in the collection of all slides in the presentation.{excerpt}
{signature:C#}
 public int Position{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Position() As Integer
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle