Page tree

Versions Compared

Key

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

Excerpt

Sets the value of the specified property.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets the value of the specified property.{excerpt}
{signature:C#}
 public void SetProperty(BuiltInProperty property, System.Object propertyValue)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub SetProperty(ByVal [property] As BuiltInProperty, ByVal propertyValue As Object)
Parameters

...

A DocumentProperties.BuiltInProperty object that represents the built-in property to set.

...

An Object that represents the value of the property specified.

Remarks

MS Word equivalent: File menu > Properties > Custom tab > Properties:

{signature}
{parameters}
{param:property}A [DocumentProperties.BuiltInProperty|DocumentProperties.BuiltInProperty] object that represents the built\-in 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 "Author" Property
          docProps.SetProperty(DocumentProperties.BuiltInProperty.Author, "Fred Jones");
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Set "Priority" Property
          docProps.SetProperty(DocumentProperties.BuiltInProperty.Author, "Fred Jones")
        {code}

{example}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle