PortfolioField
Class
Represents a field in a PDF Portfolio schema that defines a column of metadata for embedded files.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.Collections
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
C#
public class PortfolioField
Inheritance: objectPortfolioField
Properties
Gets or sets the display name shown to the user in the PDF viewer.
C#
public string DisplayName { get; set; }
Gets the type of data stored in this field.
C#
public PortfolioFieldType FieldType { get; }
Gets or sets a value indicating whether the PDF viewer should support editing this field value. Default value is false.
C#
public bool IsEditable { get; set; }
Gets or sets a value indicating whether this field is visible in the user interface. Default value is true.
C#
public bool IsVisible { get; set; }
Gets the unique key identifying this field in the schema. This key is used to associate field values with embedded files.
C#
public string Key { get; }