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

Glossary Item Box

Description

Returns or sets the width of the specified pane of the status bar.

Property type

Read-write property

Syntax

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

Parameters

Pane
Optional. An Integer that specifies the pane.

Return Type

Integer

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

© 2013 All Rights Reserved.