VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Pdf.JavaScriptApi Namespace / PdfJsField Class / page Property
Syntax Remarks Requirements SeeAlso
In This Topic
    page Property (PdfJsField)
    In This Topic
    Gets the page number or an array of page numbers of a field.
    Syntax
    'Declaration
    
    Public ReadOnly Property page As System.Object
    
    
    public System.Object page { get; }
    
    
    public: __property System.Object get_page();
    
    
    
    public:
    property System.Object page { System.Object get(); }
    Remarks

    If the field has only one appearance in the document, the page property returns an integer representing the 0-based page number of the page on which the field appears. If the field has multiple appearances, it returns an array of integers, each member of which is a 0-based page number of an appearance of the field. The order in which the page numbers appear in the array is determined by the order in which the individual widgets of this field were created (and is unaffected by tab-order). If an appearance of the field is on a hidden template page, page returns a value of -1 for that appearance.

    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also