Inconsistent types for StiText HorAlignment / VertAlignment
Posted: Wed Nov 21, 2012 12:45 pm
Hallo,
currently im working with dynamic report creation. So i have to create new Instances of StiText class. In this context i saw that the properties StiText.HorAlignment and StiText.VertAlignment are from types with inconsitent names.
Why are the names not StiTextVertAlignment or StiHorAlignment for consistence reason? That would be a little bit easier to remember or to conclude.
Kind regards
Thorsten Pontow
currently im working with dynamic report creation. So i have to create new Instances of StiText class. In this context i saw that the properties StiText.HorAlignment and StiText.VertAlignment are from types with inconsitent names.
Code: Select all
StiText textControlForDataColumn = new StiText
{
HorAlignment = StiTextHorAlignment.Left,
VertAlignment = StiVertAlignment.Center
};
Kind regards
Thorsten Pontow