TextRecord always have xOffset and yOffset values.
Brought to you by:
swfdotnet
File: TextRecord.cs
Line:
308-313: here initial xOffset and yOffset values
protected void Init()
{
glyphEntries = new GlyphEntryCollection();
xOffset = short.MinValue;
yOffset = short.MinValue;
}
419: xOffset = 0;
587-590:
private bool HasXOffset()
{
return this.xOffset != short.MinValue;
}
598-601:
private bool HasYOffset()
{
return this.yOffset != short.MinValue;
}
423: yOffset = 0;