NPOI.XSSF.UserModel.XSSFWorkbook.GetFontAt C# (CSharp) Метод

GetFontAt() публичный Метод

public GetFontAt ( short idx ) : IFont
idx short
Результат IFont
        public IFont GetFontAt(short idx)
        {
            return stylesSource.GetFontAt(idx);
        }

Usage Example

Пример #1
0
        public void TestCanComputeWidthXSSF()
        {
            IWorkbook wb = new XSSFWorkbook();

            // cannot check on result because on some machines we get back false here!
            SheetUtil.CanComputeColumnWidth(wb.GetFontAt((short)0));

            wb.Close();
        }
All Usage Examples Of NPOI.XSSF.UserModel.XSSFWorkbook::GetFontAt