Skip to main content

ASPxDiagram.CustomJSProperties Event

Enables you to supply server data that can be parsed on the client.

Namespace: DevExpress.Web.ASPxDiagram

Assembly: DevExpress.Web.ASPxDiagram.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public event CustomJSPropertiesEventHandler CustomJSProperties

Event Data

The CustomJSProperties event's data class is CustomJSPropertiesEventArgs. The following properties provide information specific to this event:

Property Description
Properties Gets a collection of temporary client properties.

Remarks

The CustomJSProperties event enables you to declare temporary client properties. Use the event argument’s Properties parameter to add new custom properties.

The property names must have the ‘cp’ prefix to avoid rewriting the ASPxDiagram‘s base properties.

Note

You can use the JSProperties property instead of the CustomJSProperties event.

See Also