Skip to content

PaneObjects - cCJStatusBar

Returns an array of all statusbar pane objects

Type: Function
Return Data Type: Handle[]

Syntax

Function PaneObjects Returns Handle[]

Call Example

Get PaneObjects to Handle[]Variable

Description

PaneObjects returns an array of all statusbar pane cCJStatusBarPane objects.

// lowercase text in all panes.
Procedure LowerCaseAllPanes
    Handle[] hoPanes
    Integer iPanes i
    String sText

    Get PaneObjects to hoPanes
    Move (SizeOfArray(hoPanes)) to iPanes
    For i from 0 to (iPanes-1)
        Get psText of hoPanes[i] to sText
        Set psText of hoPanes[i] to (Lowercase(sText))
    Loop
End_Procedure

Return Value

Returns an handle array of all statusbar pane objects