Discuss this help topic in SecureBlackbox Forum

TElPDFSimpleFont.Widths

TElPDFSimpleFont     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Glyph widths of the characters.

Declaration

[C#]
    int32[] Widths;

[VB.NET]
    Property Widths As Integer()

[Pascal]
    property Widths : IntegerArray;

[C++]
    void get_Widths(std::vector<int32_t> &OutResult);
    void set_Widths(const std::vector<int32_t> &Value);

[PHP]
    array of int32 get_Widths()
    void set_Widths(array of int32|NULL $Value)

[Java]
    int[] getWidths();
    void setWidths(int[] Value);

Description

     Widths is an array of (LastChar - FirstChar + 1) glyph width for the character code that equals FirstChar + the array index.
For character codes outside this range the value of MissingWidth is used.

See also:     FirstChar     LastChar    

Discuss this help topic in SecureBlackbox Forum