====== TabSize ====== Property of [[:scripting:api:text-document:start|ITextDocument]] ===== Description ===== Document Tab Size ===== Property type ===== Read-Write Property of type **[[scripting:api:data-type:long|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 ===== [[:scripting:api:text-document:start|ITextDocument]] ~~NOTOC~~