本文整理匯總了C#中NPOI.XSSF.UserModel.XSSFFont.GetCTFont方法的典型用法代碼示例。如果您正苦於以下問題:C# XSSFFont.GetCTFont方法的具體用法?C# XSSFFont.GetCTFont怎麽用?C# XSSFFont.GetCTFont使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類NPOI.XSSF.UserModel.XSSFFont
的用法示例。
在下文中一共展示了XSSFFont.GetCTFont方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Append
/**
* Append new text to this text run and apply the specify font to it
*
* @param text the text to append
* @param font the font to apply to the Appended text or <code>null</code> if no formatting is required
*/
public void Append(String text, XSSFFont font)
{
if (st.sizeOfRArray() == 0 && st.IsSetT())
{
//convert <t>string</t> into a text Run: <r><t>string</t></r>
CT_RElt lt = st.AddNewR();
lt.t = st.t;
PreserveSpaces(lt.t);
st.unsetT();
}
CT_RElt lt2 = st.AddNewR();
lt2.t= (text);
PreserveSpaces(lt2.t);
CT_RPrElt pr = lt2.AddNewRPr();
if (font != null) SetRunAttributes(font.GetCTFont(), pr);
}
示例2: TestConstructor
public void TestConstructor()
{
XSSFFont xssfFont = new XSSFFont();
Assert.IsNotNull(xssfFont.GetCTFont());
}