Propriedade Dictionary. LanguageSpecific (Word)Dictionary.LanguageSpecific property (Word)
True se o dicionário personalizado deve ser usado apenas com o texto formatado para um idioma específico.True if the custom dictionary is to be used only with text formatted for a specific language. Boolean de leitura/gravação.Read/write Boolean.
SintaxeSyntax
expression.expression. LanguageSpecific
expressão Uma variável que representa um objeto 'Dictionary'.expression A variable that represents a 'Dictionary' object.
ExemploExample
Este exemplo verifica se algum dos dicionários personalizados é específico de um idioma.This example checks to see whether any custom dictionaries are language specific. Se um ou mais forem, o exemplo os removerá da lista de dicionários personalizados ativos.If any of them are, the example removes them from the list of active custom dictionaries.
Dim dicLoop As Dictionary
For each dicLoop in CustomDictionaries
If dicLoop.LanguageSpecific = True Then dicLoop.Delete
Next dicLoop
Este exemplo adiciona um dicionário personalizado que só irá verificar texto que esteja formatado como alemão.This example adds a custom dictionary that will check only text that's formatted as German.
Dim dicNew As Dictionary
Set dicNew = CustomDictionaries.Add("German1.dic")
dicNew.LanguageSpecific = True
dicNew.LanguageID = wdGerman
Confira tambémSee also
Objeto DictionaryDictionary Object
Suporte e comentáriosSupport and feedback
Tem dúvidas ou quer enviar comentários sobre o VBA para Office ou sobre esta documentação?Have questions or feedback about Office VBA or this documentation? Confira Suporte e comentários sobre o VBA para Office a fim de obter orientação sobre as maneiras pelas quais você pode receber suporte e fornecer comentários.Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.