SwfDotNet.IO.Tags.Types.KerningRecord.GetSizeOf C# (CSharp) Method

GetSizeOf() public method

Gets the size of.
public GetSizeOf ( ) : int
return int
        public int GetSizeOf()
        {
            int res = 2;
            if (fontFlagsWideCodes)
                res += 4;
            else
                res += 2;
            return res;
        }