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}Returns a [Styles|Document.Styles] object that represents the properties of this document.{excerpt}
{signature:C#}
 public DocumentProperties DocumentProperties{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property DocumentProperties() As DocumentProperties
{signature}
{remarks}MS Word equivalent: File menu > Properties

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

          DocumentProperties oDocumentProperties = oDocument.DocumentProperties;
        {code}
{code:vb.net|title=vb.net}

          Dim oDocumentProperties As DocumentProperties = oDocument.DocumentProperties
        {code}

{example}