本文整理汇总了C#中NPOI.HSSF.UserModel.HSSFWorkbook.FindFont方法的典型用法代码示例。如果您正苦于以下问题:C# HSSFWorkbook.FindFont方法的具体用法?C# HSSFWorkbook.FindFont怎么用?C# HSSFWorkbook.FindFont使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NPOI.HSSF.UserModel.HSSFWorkbook
的用法示例。
在下文中一共展示了HSSFWorkbook.FindFont方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Test45338
public void Test45338()
{
HSSFWorkbook wb = new HSSFWorkbook();
Assert.AreEqual(4, wb.NumberOfFonts);
ISheet s = wb.CreateSheet();
s.CreateRow(0);
s.CreateRow(1);
ICell c1 = s.GetRow(0).CreateCell(0);
ICell c2 = s.GetRow(1).CreateCell(0);
Assert.AreEqual(4, wb.NumberOfFonts);
IFont f1 = wb.GetFontAt((short)0);
Assert.AreEqual(400, f1.Boldweight);
// Check that asking for the same font
// multiple times gives you the same thing.
// Otherwise, our Tests wouldn't work!
Assert.AreEqual(
wb.GetFontAt((short)0),
wb.GetFontAt((short)0)
);
Assert.AreEqual(
wb.GetFontAt((short)2),
wb.GetFontAt((short)2)
);
Assert.IsTrue(
wb.GetFontAt((short)0)
!=
wb.GetFontAt((short)2)
);
// Look for a new font we have
// yet to Add
Assert.IsNull(
wb.FindFont(
(short)11, (short)123, (short)22,
"Thingy", false, true, (short)2, (byte)2
)
);
IFont nf = wb.CreateFont();
Assert.AreEqual(5, wb.NumberOfFonts);
Assert.AreEqual(5, nf.Index);
Assert.AreEqual(nf, wb.GetFontAt((short)5));
nf.Boldweight = ((short)11);
nf.Color = ((short)123);
nf.FontHeight = ((short)22);
nf.FontName = ("Thingy");
nf.IsItalic = (false);
nf.IsStrikeout = (true);
nf.TypeOffset = ((short)2);
nf.Underline = ((byte)2);
Assert.AreEqual(5, wb.NumberOfFonts);
Assert.AreEqual(nf, wb.GetFontAt((short)5));
// Find it now
Assert.IsNotNull(
wb.FindFont(
(short)11, (short)123, (short)22,
"Thingy", false, true, (short)2, (byte)2
)
);
Assert.AreEqual(
5,
wb.FindFont(
(short)11, (short)123, (short)22,
"Thingy", false, true, (short)2, (byte)2
).Index
);
Assert.AreEqual(nf,
wb.FindFont(
(short)11, (short)123, (short)22,
"Thingy", false, true, (short)2, (byte)2
)
);
}