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. ====== MaxLineLength ====== Property of [[:scripting:api:syntax:start|ISyntax]] ===== Description ===== Reads Maximum Line Length (in characters) ===== Property type ===== Read-Write Property of type **[[scripting:api:data-type:long|long]]** ===== Syntax ===== ==== JavaScript ==== <code javascript> var nVal = Syntax.MaxLineLength; Syntax.MaxLineLength = nVal; </code>==== Visual Basic Script ==== <code vb> nVal = Syntax.MaxLineLength Syntax.MaxLineLength = nVal </code>==== C++ ==== <code cpp> long nVal; HRESULT hr = Syntax.get_MaxLineLength(&nVal); hr = Syntax.put_MaxLineLength(nVal); </code>===== See Also ===== [[:scripting:api:syntax:start|ISyntax]] ~~NOTOC~~