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