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