String :: alignText - Aling text in block format
Implementation overview
- Align text without indenting
String :: alignText ( iSize, eAlignType ) - Align text with indenting
String :: alignText ( iSize, iIndent, eAlignType ) -  - Title unknown
String :: alignText ( iSize, sIndent, eAlignType ) 
Implementation details
- 
Align text without indenting
odaba::String String  :: alignText ( int32 iSize, odaba::AlignTypes eAlignType )
The text in the string will be aligned using the complete size for the string
- iSize
 - Size
Size of the instance or property area. For string objects, the size is usually measured in units.
 - eAlignType - Alignment type
 
to list
 - iSize
 - Size
 - 
Align text with indenting
odaba::String String  :: alignText ( int32 iSize, int32 iIndent, odaba::AlignTypes eAlignType )
Each line starts with a number of spaces as passed in iIndent . The line size passed in iSize includes this value.
- iSize
 - Size
Size of the instance or property area. For string objects, the size is usually measured in units.
 - iIndent
 - Indent count
The indent count defines a number of characters for text indent.
 - eAlignType - Alignment type
 
to list
 - iSize
 - Size
 - 
- Title unknown
odaba::String String  :: alignText ( int32 iSize, odaba::String &sIndent, odaba::AlignTypes eAlignType )
- iSize
 - Size
Size of the instance or property area. For string objects, the size is usually measured in units.
 - sIndent - Indent string
 - eAlignType - Alignment type
 
to list
 - iSize
 - Size
 

