DocumentDefaultTabStop Property |
Gets or sets the interval (in points) between the default tab stops.
Namespace:
Aspose.Words
Assembly:
Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntaxpublic double DefaultTabStop { get; set; }
Public Property DefaultTabStop As Double
Get
Set
public:
property double DefaultTabStop {
double get ();
void set (double value);
}
member DefaultTabStop : float with get, set
Property Value
Type:
Double
Remarks
ExamplesChanges default tab positions for the document and inserts text with some tab characters.
DocumentBuilder builder = new DocumentBuilder();
builder.Document.DefaultTabStop = 72;
builder.Writeln("Hello" + ControlChar.Tab + "World!");
builder.Writeln("Hello" + ControlChar.TabChar + "World!");
See Also