Skip to main content

ASPxClientTimer.Cast(obj) Method

Converts the specified object to the ASPxClientTimer type.

Declaration

static Cast(
    obj: any
): ASPxClientTimer

Parameters

Name Type Description
obj any

The client object to be type cast.

Returns

Type Description
ASPxClientTimer

The converted client object specified by the obj parameter.

Remarks

Call the static Cast method to cast the specified client object to the ASPxClientTimer type. As a result, the type specific IntelliSense information can be displayed for the object.

Example

Convert the event source object passed to a client event’s handler.

<ClientSideEvents Init="function(s, e) { 
     var clientObject = ASPxClientTimer.Cast(s);
}" /> 

Convert a client object accessed by its ClientInstanceName property value.

<dx:ASPxTimer ID="Timer" runat="server" ClientInstanceName="ASPxClientTimer1 .../>
var clientObject = ASPxClientTimer.Cast('ASPxClientTimer1'); 
See Also