ASPSpellLink.ignoreAllCaps

This Boolean property is used to decide if the spell-check dialog will ignore words which are in ALL CAPITALS, such as acronyms.

The default value is defined in the settings file.

Example

If you wanted to your spellchecker to ignore ALL CAPITAL words:

<!--#include virtual="/ASPSpellCheck/ASPSpellInclude.inc"-->

<textarea id="MyTextArea" name="MyTextArea" cols="30" rows="10" >
HELLLO World.
</textarea >

<%
dim myLink
set myLink = new AspSpellLink
myLink.fields="MyTextArea" ' sets an object ID to be spellchecked

myLink.ignoreAllCaps= true  'ALL CAPS Ignored

response.write myLink.imageButtonHTML("","","")
set myLink = nothing
%>