Converts the specified object to the ASPxClientUploadControl type.
static Cast(obj: any): ASPxClientUploadControl
Name | Type | Description |
---|---|---|
obj | any | The client object to be type cast. |
Type | Description |
---|---|
ASPxClientUploadControl | The converted client object specified by the obj parameter. |
Call the static Cast method to cast the specified client object to the ASPxClientUploadControl type. As a result, the type specific IntelliSense information can be displayed for the object.
Convert the event source object passed to a client event's handler.
<ClientSideEvents Init="function(s, e) {
var clientObject = ASPxClientUploadControl.Cast(s);
}" />
Convert a client object accessed by its ClientInstanceName property value.
<dx:ASPxUploadControl ID="UploadControl" runat="server" ClientInstanceName="ASPxClientUploadControl1 .../>
var clientObject = ASPxClientUploadControl.Cast('ASPxClientUploadControl1');