Skip to main content

ASPxClientHiddenField.Cast(obj) Method

Converts the specified object to the ASPxClientHiddenField type.

Declaration

static Cast(
    obj: any
): ASPxClientHiddenField

Parameters

Name Type Description
obj any

The client object to be type cast.

Returns

Type Description
ASPxClientHiddenField

The converted client object specified by the obj parameter.

Remarks

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

Convert a client object accessed by its ClientInstanceName property value.

<dx:ASPxHiddenField ID="HiddenField" runat="server" ClientInstanceName="ASPxClientHiddenField1 .../>
var clientObject = ASPxClientHiddenField.Cast('ASPxClientHiddenField1'); 
See Also