ArcPad Scripting Object Model
Controls Property
See Also  Send comments on this topic.
Page Object : Controls Property

Glossary Item Box

Description

Returns a reference to the controls object for the page.

Property type

Read-only property

Syntax

Set variable = object.Controls

Return Type

Remarks

The Controls property is the default property for the Page object. Therefore, the following two lines of code will yield the same result:

       Set objButton = Application.Forms("frmMyForm").Pages("pgPage1").Controls("btnApply")
       Set objButton = Application.Forms("frmMyForm").Pages("pgPage1")("btnApply")
  

See Also

© 2013 All Rights Reserved.