CodeCharge Studio

Components Run-Time Property (ASP)

Applies to

Panel

Type

dictionary

Access

read/write

Syntax

object.Components

Description

Contains all children of the current panel. Can be used to iterate through all children.

Example

The following example iterates through panel controls and sets their Visible property to False.
Dim Ctrl, Key
For Each Key in Panel1.Components
  Set Ctrl =  Panel1.Components(Key)
  Ctrl.Visible = False
Next


On-line, printable versions and updates