Supported Web Controls

The supported web controls are listed in the following table. Web controls that have specific related APIs are presented individually below the table.

For details about table controls, refer to Web Table Controls.

Web Control

HTML Tags

Behaviors

Notes

WebCustom
Control

TagName

 

This generic control can be used for any unmatching HTML tags. It has capabilities of the basic WebControl only.

WebButton
Control

button

input type=button

input type=submit

input type=reset

input type=image

Disableable

 

WebTextBox
Control

textarea

input type=text

input type=password

input type=email

input type=url

input type=tel

input type=search

Disableable

Changeable

 

WebObject
Control

object

 

 

WebCheckBox
Control

input type=checkbox

Disableable

Changeable

Checkable

 

WebRadioButton
Control

input type=radio

Disableable

Checkable

 

WebSpanControl

span

 

This control can have child controls in the Repository.

WebDivControl

div

 

This control can have child controls in the Repository.

WebFrame
Control

iframe

frame

 

This control can have child controls in the Repository.

WebLinkControl

HTML Tags

a

Members

Member  Name

Type

Description

href

String

The URL for the link.

WebSelectListControl

HTML Tags

select

Behaviors

disableable

changeable

Members

Member  Name

Type

Description

SelectedIndex

Int

The index selected in the list.

SelectedItem

String

The selected value (by text) of the select list.

Options

WebControlsCollection<WebOptionControl>

List of the options available for this select.

WebOptionControl

HTML Tags

option

Members

Member  Name

Type

Description

Selected

Boolean

Indicates whether the option is selected.

Value

String

Value of the option. This member is read-only.

WebImageControl

HTML Tags

img

Members

Member  Name

Type

Description

Src

String

The source of the image.

WebFrameControl

HTML Tags

frame

iframe

Members

Member  Name

Type

Description

Src

String

The source of the frame.

WebFormControl

This web control can have child controls in the Repository.

HTML Tags

form

Members

Member  Name

Type

Description

FormData

Dictionary<string, string>

Returns a key-value dictionary of the form fields.

Methods

Method  Name

Description

Parameters

Submit

Submits a web form.

 

Events

Event  Name

Arguments

Description

Submitted

 

Fires when the form is submitted. The data property will contain a key-value dictionary of the form fields.