| Function Name | Inclusive Samples | Exclusive Samples | Inclusive Samples % | Exclusive Samples % | |
|---|---|---|---|---|---|
|
84,806 | 16 | 35.27 | 0.01 | |
|
82,146 | 9 | 34.17 | 0.00 |
| Function Name | Inclusive Samples | Exclusive Samples | Inclusive Samples % | Exclusive Samples % | |
|---|---|---|---|---|---|
|
84,806 | 16 | 35.27 | 0.01 | |
|
82,146 | 9 | 34.17 | 0.00 |
|
IMigrantRange range = worksheet.MigrantRange;
for (int row = 1; row <= 20000; row++)
{
for (int column = 1; column <= 50; column++)
{
// Writing values.
range.ResetRowColumn(row, column);
IStyle style = range.CellStyle;
style.BeginUpdate();
style.NumberFormat = "@";
style.HorizontalAlignment = ExcelHAlign.HAlignCenter;
IFont font = style.Font;
font.BeginUpdate();
font.FontName = "Calibri";
font.Size = 8;
font.Bold = true;
font.EndUpdate();
style.EndUpdate();
}
} |
Dear Sridhar,
Thank you for the code sample, I will apply the suggested changes and will update you.
Thank you
Dear Sridhar,
I have forwarded the suggested solution to the development team, I will surely update you in this regard. Thank you for your response and support.
Regards,
Khalid