company logo

String :: alignText - Aling text in block format

Return value:   - internal feature (not documented) (   )

Implementation overview

Implementation details

  1. 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
  2. to list
  3. 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
  4. to list
  5. - internal feature (not documented)
    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
  6. to list