Google Sheets Macro Language

70 views
Skip to first unread message

Martin Feinstein

unread,
Mar 2, 2021, 10:29:16 PM3/2/21
to Google Apps Script Community
Does anyone know of a way to write a routine in Google Macro language that can check to see if a word is in the dictionary?

As an example, in EXCEL the code below would return a FALSE is word not in dictionary.

Function CheckSpelling(Teststring As String) As Boolean
'
'   Returns True is work in dictionary
'                 False if word not in dictionary
'
    CheckSpelling = True
'
    If Application.CheckSpelling(word:=TempString) = False Then
        CheckSpelling = False
    End If
'
End Function




Thanks.

Reply all
Reply to author
Forward
0 new messages