<member name="?:UnityEngine.Font.textureRebuilt(System.Action`1<UnityEngine.Font>)">
<summary>
<para>Set a function to be called when the dynamic font texture is rebuilt.</para>
</summary>
<param name="value"></param>
</member>
<member name="M:UnityEngine.Font.CreateDynamicFontFromOSFont(System.String,System.Int32)">
<summary>
<para>Creates a Font object which lets you render a font installed on the user machine.</para>
</summary>
<param name="fontname">The name of the OS font to use for this font object.</param>
<param name="size">The default character size of the generated font.</param>
<param name="fontnames">Am array of names of OS fonts to use for this font object. When rendering characters using this font object, the first font which is installed on the machine, which contains the requested character will be used.</param>
<returns>
<para>The generate Font object.</para>
</returns>
</member>
<member name="M:UnityEngine.Font.CreateDynamicFontFromOSFont(System.String[],System.Int32)">
<summary>
<para>Creates a Font object which lets you render a font installed on the user machine.</para>
</summary>
<param name="fontname">The name of the OS font to use for this font object.</param>
<param name="size">The default character size of the generated font.</param>
<param name="fontnames">Am array of names of OS fonts to use for this font object. When rendering characters using this font object, the first font which is installed on the machine, which contains the requested character will be used.</param>
<returns>
<para>The generate Font object.</para>
</returns>
</member>
<member name="M:UnityEngine.Font.#ctor">
<summary>
<para>Create a new Font.</para>
</summary>
<param name="name">The name of the created Font object.</param>
</member>
<member name="M:UnityEngine.Font.#ctor(System.String)">
<summary>
<para>Create a new Font.</para>
</summary>
<param name="name">The name of the created Font object.</param>
</member>
<member name="M:UnityEngine.Font.GetCharacterInfo(System.Char,UnityEngine.CharacterInfo&)">
<summary>
<para>Get rendering info for a specific character.</para>
</summary>
<param name="ch">The character you need rendering information for.</param>
<param name="info">Returns the CharacterInfo struct with the rendering information for the character (if available).</param>
<param name="size">The size of the character (default value of zero will use font default size).</param>
<param name="style">The style of the character.</param>
</member>
<member name="M:UnityEngine.Font.GetCharacterInfo(System.Char,UnityEngine.CharacterInfo&,System.Int32)">
<summary>
<para>Get rendering info for a specific character.</para>
</summary>
<param name="ch">The character you need rendering information for.</param>
<param name="info">Returns the CharacterInfo struct with the rendering information for the character (if available).</param>
<param name="size">The size of the character (default value of zero will use font default size).</param>
<param name="style">The style of the character.</param>
</member>
<member name="M:UnityEngine.Font.GetCharacterInfo(System.Char,UnityEngine.CharacterInfo&,System.Int32,UnityEngine.FontStyle)">
<summary>
<para>Get rendering info for a specific character.</para>
</summary>
<param name="ch">The character you need rendering information for.</param>
<param name="info">Returns the CharacterInfo struct with the rendering information for the character (if available).</param>
<param name="size">The size of the character (default value of zero will use font default size).</param>
<param name="style">The style of the character.</param>
</member>
<member name="M:UnityEngine.Font.GetMaxVertsForString(System.String)">
<summary>
<para>Returns the maximum number of verts that the text generator may return for a given string.</para>
</summary>
<param name="str">Input string.</param>
</member>
<member name="M:UnityEngine.Font.GetOSInstalledFontNames">
<summary>
<para>Get names of fonts installed on the machine.</para>
</summary>
<returns>
<para>An array of the names of all fonts installed on the machine.</para>
</returns>
</member>
<member name="M:UnityEngine.Font.HasCharacter(System.Char)">
<summary>
<para>Does this font have a specific character?</para>
</summary>
<param name="c">The character to check for.</param>
<returns>
<para>Whether or not the font has the character specified.</para>
</returns>
</member>
<member name="M:UnityEngine.Font.RequestCharactersInTexture(System.String,System.Int32,UnityEngine.FontStyle)">
<summary>
<para>Request characters to be added to the font texture (dynamic fonts only).</para>
</summary>
<param name="characters">The characters which are needed to be in the font texture.</param>
<param name="size">The size of the requested characters (the default value of zero will use the font's default size).</param>
<param name="style">The style of the requested characters.</param>
</member>