KaxSpellOnClientCheckCancelled Property |
Specifies the name of the client-side function that will be called when the user
cancels the spell check.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string OnClientCheckCancelled { get; set; }
Public Property OnClientCheckCancelled As String
Get
Set
public:
property String^ OnClientCheckCancelled {
String^ get ();
void set (String^ value);
}
member OnClientCheckCancelled : string with get, set
Property Value
Type:
String
Remarks
The function should accept two parameters: sender (the spell client object) and arguments.
Examplesfunction onCheckCancelled(sender, args)
{
log("spell: " + sender.clientId + " cancelled for: " + sender.targetControlId);
}
See Also