Show pageOld revisionsBacklinksAdd to bookBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== 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 ==== <code javascript> var nVal = TextDocument.TabSize; TextDocument.TabSize = nVal; </code>==== Visual Basic Script ==== <code vb> nVal = TextDocument.TabSize TextDocument.TabSize = nVal </code>==== C++ ==== <code cpp> long nVal; HRESULT hr = TextDocument.get_TabSize(&nVal); hr = TextDocument.put_TabSize(nVal); </code>===== See Also ===== [[:scripting:api:text-document:start|ITextDocument]] ~~NOTOC~~