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
vb.net
vb.net
Public Sub SetCustomProperty(ByVal key As String, ByVal value As Object)
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 Block
vbnet
vbnet
titlevb.net
docProps.SetCustomProperty("Reviewed by", "J. Smith")