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. ====== Point ====== Constructor of Point object as method of [[:scripting:api:application:start|IApplication]] ===== Description ===== Creates Point Object ===== Parameters ===== * [[scripting:api:data-type:long|long]] **nX** = -1 (optional) * [[scripting:api:data-type:long|long]] **nY** = -1 (optional) ==== Return Value ==== * [[:scripting:api:point:start|IPoint]] **ppPoint** ===== Syntax ===== ==== JavaScript ==== <code javascript> var ppPoint = new Point(nX, nY); </code>==== Visual Basic Script ==== <code vb> ppPoint = Application.Point nX, nY </code>==== C++ ==== <code cpp> CComPtr<IPoint> pPoint; HRESULT hr = Application.Point(nX, nY, &pPoint); </code>===== See Also ===== [[:scripting:api:application:start|IApplication]] ~~NOTOC~~