コード例 #1
0
ファイル: Table_BASE.cs プロジェクト: sjvudp/Font-Validator
            public BaseScriptTable GetBaseScriptTable(BaseScriptRecord bsr)
            {
                BaseScriptTable bst = null;

                if (bsr != null)
                {
                    ushort offset = (ushort)(m_offsetBaseScriptListTable + bsr.BaseScriptOffset);
                    bst = new BaseScriptTable(offset, m_bufTable);
                }
                return(bst);
            }
コード例 #2
0
ファイル: Table_BASE.cs プロジェクト: bitforks/Font-Validator
 public BaseScriptTable GetBaseScriptTable(BaseScriptRecord bsr)
 {
     BaseScriptTable bst = null;
     if (bsr != null)
     {
         ushort offset = (ushort)(m_offsetBaseScriptListTable + bsr.BaseScriptOffset);
         bst = new BaseScriptTable(offset, m_bufTable);
     }
     return bst;
 }