The SWFText class
Introducción
SWFText.
Class synopsis
SWFText
class SWFText
{
/* Methods */
void addString
( string $string
)
void addUTF8String
( string $text
)
void __construct
( void
)
float getAscent
( void
)
float getDescent
( void
)
float getLeading
( void
)
float getUTF8Width
( string $string
)
float getWidth
( string $string
)
void moveTo
( int $x
, int $y
)
void setColor
( int $red
, int $green
, int $blue
[, int $a
] )
void setFont
( string $font
)
void setHeight
( int $height
)
void setSpacing
( float $spacing
)
}Table of Contents
- SWFText->addString() — Draws a string
- SWFText->addUTF8String() — Writes the given text into this SWFText object at the current pen position, using the current font, height, spacing, and color
- SWFText->__construct() — Creates a new SWFText object
- SWFText->getAscent() — Returns the ascent of the current font at its current size, or 0 if not available
- SWFText->getDescent() — Returns the descent of the current font at its current size, or 0 if not available
- SWFText->getLeading() — Returns the leading of the current font at its current size, or 0 if not available
- SWFText->getUTF8Width() — calculates the width of the given string in this text objects current font and size
- SWFText->getWidth() — Computes string's width
- SWFText->moveTo() — Moves the pen
- SWFText->setColor() — Sets the current text color
- SWFText->setFont() — Sets the current font
- SWFText->setHeight() — Sets the current font height
- SWFText->setSpacing() — Sets the current font spacing
SWFText
There are no user contributed notes for this page.
