Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

FieldName Enum

In This Article

Lists field names.

#Declaration

TypeScript
export enum FieldName {
    Unknown = 0,
    Time = 1,
    Date = 2,
    Page = 3,
    NumPages = 4,
    MergeField = 5,
    DocVariable = 6,
    Hyperlink = 7,
    Seq = 8,
    Tc = 9,
    PageRef = 10,
    Toc = 11,
    FillIn = 12
}

#Members

Name Description
Date

The DATE field inserts the current date and time.

DocVariable

The DOCVARIABLE field inserts a complex content that is specified programmatically in the OnCalculateDocumentVariable(String) method.

FillIn

The FILLIN field displays a dialog box and inserts a user’s response as a field result. The dialog box is displayed each time you update the field.

The HYPERLINK field inserts a hyperlink to another location or to a bookmark.

MergeField

The MERGEFIELD field inserts a value from the bound data source.

NumPages

The NUMPAGES field inserts the total number of pages.

Page

The PAGE field inserts the number of the page containing the field.

PageRef

The PAGEREF field inserts a number of the page that stores the specified bookmark for a cross-reference.

Seq

The SEQ field inserts the number of the figure/table/equations.

Tc

The TC field inserts the alternate entry for the table of contents.

Time

The TIME field inserts the current time.

Toc

The TOC field inserts the table of contents.

Unknown

The field has an unknown name.