"tabStopWidth"
The attribute "tabStopWidth" sets the tab stop width of a textEdit.
Synopsis
shape.tabStopWidth(int tabW);
Parameter
Parameter | Description |
---|---|
shape | Name of the object |
tabW | The width of the tab stop in textEdit. |
Description
The attribute "tabStopWidth" sets the tab stop width (in pixels) .
Example
The following example sets the width of the tab stop to 25.
main(bool enter)
{
int tabW = 25;
this.tabStopWidth(tabW);
}
Assignment
TextEdit