ASPxClientDiagram.SetReadOnly(readOnly) Method
In This Article
Allows you to enable/disable read-only mode.
#Declaration
TypeScript
SetReadOnly(
readOnly: boolean
): void
#Parameters
Name | Type | Description |
---|---|---|
read |
boolean |
|
#Remarks
The read-only mode prohibits users from editing the diagram.
<dx:ASPxDiagram ID="Diagram" runat="server" ClientInstanceName="diagram">
</dx:ASPxDiagram>
diagram.SetReadOnly(true);
If the server ReadOnly property is set to true
, the SetReadOnly method is not in effect.
See Also