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. ====== FindLabel ====== Method of [[:scripting:api:text-document:start|ITextDocument]] ===== Description ===== Find Label from point ===== Parameters ===== * [[:scripting:api:position:start|IPosition]] **pPos** ==== Return Value ==== * [[:scripting:api:label:start|ILabel]] **ppLabel** ===== Syntax ===== ==== JavaScript ==== <code javascript> var ppLabel = TextDocument.FindLabel(pPos); </code>==== Visual Basic Script ==== <code vb> ppLabel = TextDocument.FindLabel pPos </code>==== C++ ==== <code cpp> CComPtr<ILabel> pLabel; HRESULT hr = TextDocument.FindLabel(pPos, &pLabel); </code>===== See Also ===== [[:scripting:api:text-document:start|ITextDocument]] ~~NOTOC~~