Enhanced transition of data from XML to FlexGrid

This commit is contained in:
Devin Jankowski 2020-02-28 15:20:02 +00:00
parent 9d24334753
commit 87ab560f11

View File

@ -1642,7 +1642,7 @@ namespace Volian.Controls.Library
public void RTFTextAlignment(CellRange cr, HorizontalAlignment ha)
{
using (StepRTB srtb = new StepRTB())
using ( StepRTB srtb = new StepRTB())
{
for (int rw = cr.r1; rw <= cr.r2; rw++)
for (int cl = cr.c1; cl <= cr.c2; cl++)
@ -1663,6 +1663,7 @@ namespace Volian.Controls.Library
}
public void ChangeCellAlign(CellRange cr, TextAlignEnum newAlign)
{
//Console.WriteLine("CellRange = {0}, align={1}", cr, newAlign);
for (int rw = cr.r1; rw <= cr.r2; rw++)
for (int col = cr.c1; col <= cr.c2; col++)
{