ArcPad Scripting Object Model
Text Property
See Also  Send comments on this topic.
Pane
Optional. An Integer that specifies the pane.
StatusBar Object : Text Property

Glossary Item Box

Description

Returns or sets the text displayed in the specified pane of the status bar.

Property type

Read-write property

Syntax

object.Text ( [Pane] ) = [ value ]

Parameters

Pane
Optional. An Integer that specifies the pane.

Return Type

Text

Remarks

Pane is an integer specifying the status bar pane whose text is to be returned or set. The following values are valid for Pane:

Pane Pane
0 First pane (text pane).
1 Second pane (coordinate pane).
2 Third pane (scale pane).
3 Fourth pane (rocker mode pane).

If Pane is not specified, the default value of 0 is used. [Optional].

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

       Application.StatusBar.Text = "Hello World"
       Application.StatusBar = "Hello World"
  

Example

See Also

© 2012 All Rights Reserved.