Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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
0key

The key or name 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")