Table of Contents

TDocumentProperties.GetStandardProperty Method

Returns a standard document property (Like Author, Title, etc.). This method returns an object that might be:

  • null: If the property is not assigned.
  • Int16, Int32, Int64, Single, Double, Decimal: If the property is a number.
  • DateTime: If the property is a Date or a DateTime.
  • String: If the property is a string.
  • Boolean: If the property is a boolean.
  • An array of byte (byte[]): If the property is a Blob.
  • An array of object (object[]): If the property is an array. Each one of the members of the array must be of one of the types specified here.

Syntax

Namespace: FlexCel.Core

public Object GetStandardProperty(TPropertyId PropertyId)

Parameters

<-> Parameter Type Description
PropertyId TPropertyId

See also