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 the value of the specified property.{excerpt}
{signature:C#}
 public void SetProperty(System.String propertyName, System.Object propertyValue)
{signature}{signature:vb.net}
Public Sub SetProperty(ByVal propertyName As String, ByVal propertyValue As Object)
{signature}
{parameters}
{param:propertyName}A {{String}} representing the name of the property to set.{param}
{param:propertyValue}An {{Object}} that represents the value of the property specified.{param}
{remarks}MS Word equivalent: File menu > Properties > Custom tab > Properties:

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

          //--- Set "Priority" Property
          docProps.SetProperty("Priority", "high");
        {code}
{code:vb.net|title=vb.net}

          '--- Set "Priority" Property
          docProps.SetProperty("Priority", "high")
        {code}

{example}