New to Telerik Document ProcessingStart a free 30-day trial

Represents a value in a collection item dictionary, storing custom metadata for an embedded file in a PDF Portfolio.

Definition

Namespace:Telerik.Windows.Documents.Fixed.Model.Collections

Assembly:Telerik.Windows.Documents.Fixed.dll

Syntax:

C#
public class CollectionItemValue

Inheritance: objectCollectionItemValue

Properties

Gets the date value if ValueType is Date.

C#
public DateTime? DateValue { get; }
Property Value:

The date value, or null if the value is not a date type.

Gets the numeric value if ValueType is Number.

C#
public double? NumberValue { get; }
Property Value:

The numeric value, or null if the value is not a number type.

Gets or sets an optional prefix that is displayed before the main value in the PDF viewer. This corresponds to the P entry in a CollectionSubitem dictionary (PDF 1.7).

C#
public string Prefix { get; set; }
Remarks:

When a prefix is set, the value is exported as a CollectionSubitem dictionary with P and D entries. Example: A subject field might have prefix "Re:" and data "Let's have lunch on Friday!".

Gets the text value if ValueType is Text.

C#
public string TextValue { get; }
Property Value:

The text value, or null if the value is not a text type.

Gets the type of this collection item value.

C#
public CollectionItemValueType ValueType { get; }