TabSize

Property of ITextDocument

Description

Document Tab Size

Property type

Read-Write Property of type long

Syntax

JavaScript

var nVal = TextDocument.TabSize;
TextDocument.TabSize = nVal;

Visual Basic Script

nVal = TextDocument.TabSize
TextDocument.TabSize = nVal

C++

long nVal;
HRESULT hr = TextDocument.get_TabSize(&nVal);
hr = TextDocument.put_TabSize(nVal);

See Also

ITextDocument