Error processing SSI file
(Leadtools.Annotations.Core)

Show in webframe

Pages Property






Gets or sets an array of integers that contain the pages numbers found in the file.
Syntax
public int[] Pages {get; set;}
'Declaration
 
Public Property Pages As Integer()
public int[] Pages {get; set;}
@property (nonatomic) NSArray* pages;
public int[] getPages()
public void setPages(int[] value)
            
 
get_Pages();
set_Pages(value);
Object.defineProperty('Pages');

Property Value

An array of integers that contain the pages numbers found in the file.
Remarks

If the file contains valid LEADTOOLS Annotations, the value of Pages will be an array of integers which contain the number of each page found in the file where each page is an Annotations Container.

To get the number of pages (and their values) in the file, use the following code:

[C#]


            // Get the number of pages
            int pageCount = info.Pages.Count;
            // Get the page numbers
            for (int i = 0; i < pageCount; i++) {
              int pageNumber = info.Pages[i];
            }
            

[JavaScript]


            // Get the number of pages
            var pageCount = info.get_pages().length;
            // Get the page numbers
            for (var i = 0; i < pageCount; i++) {
              var pageNumber = info.get_pages()[i];
            }
            
Example

For an example, refer to GetInfo, GetInfoFromString or GetInfoAsync

Requirements

Target Platforms

See Also

Reference

AnnCodecsInfo Class
AnnCodecsInfo Members

Error processing SSI file
   Leadtools.Annotations.Core requires a Document or Medical toolkit license and unlock key. For more information, refer to: LEADTOOLS Toolkit Features