Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Sets or returns a {{boolean}} that represents whether or not Word will show ink revisions in this document.{excerpt}
{signature:C#}
 public boolean ShowInkRevisions{ get; set; }
{signature}{signature:vb.net}
Public Property ShowInkRevisions() As Boolean
{signature}
{example}{code:csharp|title=C#}

          //--- Return ShowInkRevisions
          bool showInkRevisions = changeTracking.ShowInkRevisions;

          //--- Set ShowInkRevisions
          changeTracking.ShowInkRevisions = true;
        {code}
{code:vb.net|title=vb.net}

          '--- Return ShowInkRevisions
          Dim showInkRevisions As Boolean = changeTracking.ShowInkRevisions

          '--- Set ShowInkRevisions
          changeTracking.ShowInkRevisions = True
        {code}

{example}