GetAllFontInfo.Get all font information.
Request
<?xml
version="1.0"
encoding="utf-8"?>
<sdk
guid="##GUID">
<in
method="GetAllFontInfo"/>
</sdk>
<!--
Description :
1. Sdk.guid is the guid value
obtained through the negotiation of the SDK protocol
version.
2. in.method =
GetAllFontInfo
-->
<?xml
version="1.0"
encoding="utf-8"?>
<sdk
guid="##GUID">
<out
method="GetAllFontInfo"
result="##result">
<fonts>
<font
name="##value"
file="##value"
bold="##value"
italic="##value"
underline="##value"/>
</fonts>
</out>
</sdk>
<!--
Description :
1. Sdk.guid is the guid value
obtained through the negotiation of the SDK protocol version.
2. out.method = GetTimeInfo
3. out.result : (The error
code refers toErrorCode
4. out.result :(When
the value is not "kSuccess", out has no child nodes.)
5. fonts can contain multiple font tags
6. font.name: (font name)
7. font.file :(font file name)
8. font.bold: Whether the font supports bold, the
range of values is {"true" (supported), "false" (not
supported)}.
9. font.italic: Whether the font supports italics,
the range of values is {"true" (supported), "false" (not
supported)}.
10.font.underline: Whether the font supports underscores, the range of values is {"true" (supported), "false" (not supported)}.
-->