Class GdiKerningPairs
Inheritance
System.Object
GdiKerningPairs
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Pdf.Gdi
Assembly: TelerikData.dll
Syntax
public class GdiKerningPairs
Fields
Empty
Properties
Count
Gets the number of kerning pairs.
Declaration
public int Count { get; }
Property Value
System.Int32
|
Item[Int32, Int32]
Gets the kerning amount for the supplied index pair or 0 if a kerning pair does not exist.
Declaration
public int this[int left, int right] { get; }
Parameters
System.Int32
left
|
System.Int32
right
|
Property Value
System.Int32
|
Methods
HasPair(Int32, Int32)
Returns true if a kerning value exists for the supplied character index pair.
Declaration
public bool HasPair(int left, int right)
Parameters
System.Int32
left
|
System.Int32
right
|
Returns
System.Boolean
|