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}Returns an {{Object}} that represents the value of the custom property specified.{excerpt}
{signature:C#}
 public System.Object GetCustomProperty(System.String key)
{signature}{signature:vb.net}
Public Function GetCustomProperty(ByVal key As String) As Object
{signature}
{parameters}
{param:key}The name of the property to retrieve.{param}
{returns}An {{Object}} that represents the value of the custom property specified.{returns}
{remarks}MS Word equivalent: File menu > Properties > Custom tab > Properties:

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

          //--- Return "Priority" Custom Property
          string priority = docProps.GetCustomProperty("Priority");
        {code}
{code:vb.net|title=vb.net}

          '--- Return "Priority" Custom Property
          Dim priority As String = docProps.GetCustomProperty("Priority")
        {code}

{example}