GlyphMetrics

Instances of this class represent glyph metrics. <p> The hashCode() method in this class uses the values of the public fields to compute the hash value. When storing instances of the class in hashed collections, do not modify these fields after the object has been inserted. </p> <p> Application code does <em>not</em> need to explicitly release the resources managed by each instance when those instances are no longer required, and thus no <code>dispose()</code> method is provided. </p>

@see TextStyle @see TextLayout @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>

@since 3.2

Constructors

this
this(int ascent, int descent, int width)

Constructs an instance of this class with the given ascent, descent and width values.

Members

Functions

opEquals
equals_t opEquals(Object object)

Compares the argument to the receiver, and returns true if they represent the <em>same</em> object using a class specific comparison.

toHash
hash_t toHash()

Returns an integer hash code for the receiver. Any two objects that return <code>true</code> when passed to <code>equals</code> must return the same value for this method.

toString
String toString()

Returns a string containing a concise, human-readable description of the receiver.

Variables

ascent
int ascent;

the ascent of the GlyphMetrics

descent
int descent;

the descent of the GlyphMetrics

width
int width;

the width of the GlyphMetrics

Meta