Код: Выделить всё
StiTextInCells ist_bol = report.GetComponentByName("TextInCells37") as StiTextInCells;
ist_bol.Left += Смещение.X;
ist_bol.Top += Смещение.Y;
Код: Выделить всё
StiTextInCells ist_bol = report.GetComponentByName("TextInCells37") as StiTextInCells;
ist_bol.Left += Смещение.X;
ist_bol.Top += Смещение.Y;
Код: Выделить всё
StiTable tbl = report.GetComponents()["Table1"] as StiTable;
foreach (StiTableCell cell in tbl.GetComponents())
{
...
}
Код: Выделить всё
foreach (StiComponent comp in report.GetComponents())
{
if (comp is StiTextInCells)
{
comp.Left += Смещение.X;
comp.Top += Смещение.Y;
}
}