MVCxClientUploadControl.Cast(obj) Method
Converts the specified object to the MVCxClientUploadControl type.
Declaration
static Cast(
obj: any
): MVCxClientUploadControl
Parameters
Name | Type | Description |
---|---|---|
obj | any | The client object to be type cast. |
Returns
Type | Description |
---|---|
MVCxClientUploadControl | The converted client object specified by the obj parameter. |
Remarks
Call the static Cast method to cast the specified client object to the MVCxClientUploadControl 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 = MVCxClientUploadControl.Cast(s);
}" />
Convert a client object accessed by its UploadControlSettings.Name property value.
@Html.DevExpress().UploadControl(
settings => {
settings.Name = "MVCxClientUploadControl1";
...
var clientObject = MVCxClientUploadControl.Cast('MVCxClientUploadControl1');
See Also