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. ====== AddColumn ====== Method of [[:scripting:api:list-pane:start|IListPane]] ===== Description ===== Add new column to list ===== Parameters ===== * [[scripting:api:data-type:BSTR|BSTR]] **sTitle** * [[:scripting:api:alignment|eAlignment]] **nAlignment** = 0 (optional) * [[scripting:api:data-type:long|long]] **nWidth** = -1 (optional) ===== Syntax ===== ==== JavaScript ==== <code javascript> ListPane.AddColumn(sTitle, nAlignment, nWidth); </code>==== Visual Basic Script ==== <code vb> ListPane.AddColumn sTitle, nAlignment, nWidth </code>==== C++ ==== <code cpp> HRESULT hr = ListPane.AddColumn(sTitle, nAlignment, nWidth); </code>===== See Also ===== [[:scripting:api:list-pane:start|IListPane]] ~~NOTOC~~