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

...

Description

Excerpt

Use SetCustomProperty to create a custom document property. Pass the method the name and value of the property. The value can be one of the following types, depending on the property: String, Double, Integer, Boolean, or DateTime.

Signature
C#
C#
 public void SetCustomProperty(System.String key, System.Object value)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Sub SetCustomProperty(ByVal key As String, ByVal value As Object)
{signature}
{parameters}
{param:key}The key or name of the custom property.{param}
{param:value}The value of the custom property.{param}
{example}{code:csharp|title=C#}
Parameters
Param
key
key

The key or name of the custom property.

Param
value
value

The value of the custom property.

Example
Code Block
csharp
csharp
titleC#

docProps.SetCustomProperty("Reviewed by", "J. Smith");
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

docProps.SetCustomProperty("Reviewed by", "J. Smith")
{code} {example}