Olá. Fiz uma macro para ativar/desativar o corretor ortográfico, mas não está funcionando. Se alguém puder me ajudar agradeço.
sub CorrecaoOrtografica
dim document as object
dim dispatcher as object
document = ThisComponent.CurrentController.Frame
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
dim SpellCheck(0) as new com.sun.star.beans.PropertyValue
SpellCheck(0).Name = "SpellOnline"
SpellCheck(0).Value = False
dispatcher.executeDispatch(document, ".uno:SpellOnline", "", 0, SpellCheck())
end sub