Skip to main content

ASPxClientControl.GetControlCollection Method

Returns a collection of client web control objects.

Declaration

static GetControlCollection(): ASPxClientControlCollection

Returns

Type Description
ASPxClientControlCollection

An ASPxClientControlCollection object representing the client-side collection of web controls.

Remarks

Use the GetControlCollection method on the client side to gain access to the collection of all DevExpress client object instances..

A particular web control object can be accessed either by its unique hierarchically-qualified identifier, using the ASPxClientControlCollection.GetByName method.

Online Example

Example

This example illustrates how to emulate the Tab key using the Enter key.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page {
    protected void Page_Load (object sender, EventArgs e) {

    }
    protected void btn_Click (object sender, EventArgs e) {

    }
}
See Also