JCL Help:TJclTabSet.ToString

From Project JEDI Wiki
Jump to navigationJump to search


Summary

Converts the tab set into its string representation.


Pascal

 public function ToString: string; override; overload;


Return Value

A string representation of this tab set.


Description

The ToString method returns a string representing this tab set, containing each individual tabulation position and the tab width used beyond those fixed positions.
Using this overload is the same as using the one with the formatting options, specifying the TabSetFormatting_Full option.
The resulting string will be composed of the following items:

'0' Outputted only when the tabset is zero-based.
0 or more whitespaces Used to separate the zero-based flag from the tabulation positions; at least one whitespace is used if no opening bracket is used.
'[' Opening bracket for the fixed tabulation positions.
comma-separated list of tabulation positions The individual fixed tabulation positions of this tab set.
']' Closing bracket for the fixed tabulation positions.
0 or more whitespaces Used to separate the zero-based flag and/or tabulation positions from the tab width.
'+' Outputted to mark the tab width property.
Value of ActualTabWidth The tab width.


About

Notes

This method is nil-safe.


Contribute to this help topic

This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page