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