1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="SWFTextField" namespace="" name="SWFTextField">
<method name="addChars" abstract="false" static="false" final="false">
<docblock>
<description compact="Adds characters to a font that will be available within a textfield"/>
<return type="void"/>
</docblock>
<parameter name="chars" optional="false" byreference="false" type="string"/>
</method>
<method name="addString" abstract="false" static="false" final="false">
<docblock>
<description compact="Concatenates the given string to the text field"/>
<return type="void"/>
</docblock>
<parameter name="string" optional="false" byreference="false" type="string"/>
</method>
<method name="align" abstract="false" static="false" final="false">
<docblock>
<description compact="Sets the text field alignment"/>
<return type="void"/>
</docblock>
<parameter name="alignement" optional="false" byreference="false" type="int"/>
</method>
<constructor name="__construct" abstract="false" static="false" final="false">
<docblock>
<description compact="Creates a text field object">swftextfield creates a new text field object. Text Fields are less flexible than swftext objects- they can't be rotated, scaled non-proportionally, or skewed, but they can be used as form entries, and they can use browser-defined fonts.</description>
<return type="void"/>
</docblock>
<parameter name="flags" optional="true" byreference="false" type="int"/>
</constructor>
<method name="setBounds" abstract="false" static="false" final="false">
<docblock>
<description compact="Sets the text field width and height"/>
<return type="void"/>
</docblock>
<parameter name="width" optional="false" byreference="false" type="object" class="float"/>
<parameter name="height" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="setColor" abstract="false" static="false" final="false">
<docblock>
<description compact="Sets the color of the text field"/>
<return type="void"/>
</docblock>
<parameter name="red" optional="false" byreference="false" type="int"/>
<parameter name="green" optional="false" byreference="false" type="int"/>
<parameter name="blue" optional="false" byreference="false" type="int"/>
<parameter name="a" optional="true" byreference="false" type="int"/>
</method>
<method name="setFont" abstract="false" static="false" final="false">
<docblock>
<description compact="Sets the text field font"/>
<return type="void"/>
</docblock>
<parameter name="font" optional="false" byreference="false" type="object" class="SWFFont"/>
</method>
<method name="setHeight" abstract="false" static="false" final="false">
<docblock>
<description compact="Sets the font height of this text field font"/>
<return type="void"/>
</docblock>
<parameter name="height" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="setIndentation" abstract="false" static="false" final="false">
<docblock>
<description compact="Sets the indentation of the first line"/>
<return type="void"/>
</docblock>
<parameter name="width" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="setLeftMargin" abstract="false" static="false" final="false">
<docblock>
<description compact="Sets the left margin width of the text field"/>
<return type="void"/>
</docblock>
<parameter name="width" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="setLineSpacing" abstract="false" static="false" final="false">
<docblock>
<description compact="Sets the line spacing of the text field"/>
<return type="void"/>
</docblock>
<parameter name="height" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="setMargins" abstract="false" static="false" final="false">
<docblock>
<description compact="Sets the margins width of the text field"/>
<return type="void"/>
</docblock>
<parameter name="left" optional="false" byreference="false" type="object" class="float"/>
<parameter name="right" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="setName" abstract="false" static="false" final="false">
<docblock>
<description compact="Sets the variable name"/>
<return type="void"/>
</docblock>
<parameter name="name" optional="false" byreference="false" type="string"/>
</method>
<method name="setPadding" abstract="false" static="false" final="false">
<docblock>
<description compact="Sets the padding of this textfield"/>
<return type="void"/>
</docblock>
<parameter name="padding" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="setRightMargin" abstract="false" static="false" final="false">
<docblock>
<description compact="Sets the right margin width of the text field"/>
<return type="void"/>
</docblock>
<parameter name="width" optional="false" byreference="false" type="object" class="float"/>
</method>
</class>
|