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. ====== CollectSyntaxes ====== Method of [[:scripting:api:settings:start|ISettings]] ===== Description ===== Collects syntaxes by criteria ===== Parameters ===== * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **bDisabled** = VARIANT_FALSE (optional) * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **bAbstract** = VARIANT_FALSE (optional) * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **bWithoutExt** = VARIANT_FALSE (optional) ==== Return Value ==== * [[:scripting:api:syntaxes:start|ISyntaxes]] **ppSyntaxes** ===== Syntax ===== ==== JavaScript ==== <code javascript> var ppSyntaxes = Settings.CollectSyntaxes(bDisabled, bAbstract, bWithoutExt); </code>==== Visual Basic Script ==== <code vb> ppSyntaxes = Settings.CollectSyntaxes bDisabled, bAbstract, bWithoutExt </code>==== C++ ==== <code cpp> CComPtr<ISyntaxes> pSyntaxes; HRESULT hr = Settings.CollectSyntaxes(bDisabled, bAbstract, bWithoutExt, &pSyntaxes); </code>===== See Also ===== [[:scripting:api:settings:start|ISettings]] ~~NOTOC~~