Stay organized with collections
Save and categorize content based on your preferences.
blockly > FieldNumber > spellcheck_
FieldNumber.spellcheck_ property
Don't spellcheck numbers. Our validator does a better job.
Signature:
protected spellcheck_: boolean;
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["The `spellcheck_` property of the `FieldNumber` class in Blockly is used to disable spellcheck for number inputs."],["This property is set to `false` to prevent spellcheckers from incorrectly flagging numerical values, as Blockly's own validator handles number validation."]]],["The `FieldNumber.spellcheck_` property is a boolean value that controls spellchecking for number fields. It is set to `false` to disable spellchecking because a custom validator handles number validation more effectively. This property is marked as protected, indicating it's intended for internal use within the `FieldNumber` class. The key action is to prevent standard spellcheck mechanisms from operating on number input.\n"]]