Check grammar but NOT spelling with VBA
i am trying to ONLY check for grammar errors (i think this is considered a grammar error and NOT a spelling)
ei.
play.I (Word provides) play. I as a correction.
head.My (Word provides) head. My as a correction.
I tried using ActiveDocument.CheckGrammar thinking it would NOT pick up misspelled words since there is a separate range.checkspelling method but it also picks up misspelled words
anyway to isolate the different types of errors that this functions picks up?
maybe I could LOOP each error (red squiggly lines) and do an "If Instr(error, contains either . OR ! OR ?) then... ?
are these spelling/grammar errors loopable?
|