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