Semen Matusovskiy Well-Known Member Licensed User Feb 22, 2019 #1 Hi, gues -- I add TextView by code and want to disable SpellCheck (like it's possible to do in designer). I looked https://www.b4x.com/b4i/help/views.html and was not able to find a property to which I need to assign SPELLCHECK_*** Any ideas ?
Hi, gues -- I add TextView by code and want to disable SpellCheck (like it's possible to do in designer). I looked https://www.b4x.com/b4i/help/views.html and was not able to find a property to which I need to assign SPELLCHECK_*** Any ideas ?
Erel B4X founder Staff member Licensed User Longtime User Feb 24, 2019 #2 It is indeed missing by mistake. Will be added in the next update. For now set it with NativeObject: B4X: Dim no As NativeObject = TextField1 no.SetField("spellCheckingType", TextField1.SPELLCHECK_YES) Upvote 0
It is indeed missing by mistake. Will be added in the next update. For now set it with NativeObject: B4X: Dim no As NativeObject = TextField1 no.SetField("spellCheckingType", TextField1.SPELLCHECK_YES)