Skip to main content

ASPxClientCallback.Cast(obj) Method

Converts the specified object to the ASPxClientCallback type.

#Declaration

TypeScript
static Cast(
    obj: any
): ASPxClientCallback

#Parameters

Name Type Description
obj any

The client object to be type cast.

#Returns

Type Description
ASPxClientCallback

The converted client object specified by the obj parameter.

#Remarks

Call the static Cast method to cast the specified client object to the ASPxClientCallback 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 = ASPxClientCallback.Cast(s);
}" /> 

Convert a client object accessed by its ClientInstanceName property value.

<dx:ASPxCallback ID="Callback" runat="server" ClientInstanceName="ASPxClientCallback1 .../>
var clientObject = ASPxClientCallback.Cast('ASPxClientCallback1'); 
See Also