Bookmark.GetSpellingSuggestions 方法
取得 SpellingSuggestions 集合,表示在 Bookmark 控制項中,建議做為第一個字的拼字取代文字。
命名空間: Microsoft.Office.Tools.Word
組件: Microsoft.Office.Tools.Word (在 Microsoft.Office.Tools.Word.dll 中)
語法
'宣告
Function GetSpellingSuggestions ( _
ByRef CustomDictionary As Object, _
ByRef IgnoreUppercase As Object, _
ByRef MainDictionary As Object, _
ByRef SuggestionMode As Object, _
ByRef CustomDictionary2 As Object, _
ByRef CustomDictionary3 As Object, _
ByRef CustomDictionary4 As Object, _
ByRef CustomDictionary5 As Object, _
ByRef CustomDictionary6 As Object, _
ByRef CustomDictionary7 As Object, _
ByRef CustomDictionary8 As Object, _
ByRef CustomDictionary9 As Object, _
ByRef CustomDictionary10 As Object _
) As SpellingSuggestions
SpellingSuggestions GetSpellingSuggestions(
ref Object CustomDictionary,
ref Object IgnoreUppercase,
ref Object MainDictionary,
ref Object SuggestionMode,
ref Object CustomDictionary2,
ref Object CustomDictionary3,
ref Object CustomDictionary4,
ref Object CustomDictionary5,
ref Object CustomDictionary6,
ref Object CustomDictionary7,
ref Object CustomDictionary8,
ref Object CustomDictionary9,
ref Object CustomDictionary10
)
參數
- CustomDictionary
型別:System.Object%
可能是傳回 Dictionary 的陳述式,或自訂字典的檔案名稱。
- IgnoreUppercase
型別:System.Object%
若要忽略所有大寫字母的字,則為 true。如果省略這個引數,就會使用 IgnoreUppercase 屬性目前的值。
- MainDictionary
型別:System.Object%
可能會傳回 Dictionary 的陳述式,或主要字典的檔案名稱。如果您沒有指定主要字典,Microsoft Office Word 就會使用對應到 Bookmark 控制項中第一個字之語言格式的主要字典。
- SuggestionMode
型別:System.Object%
指定 Word 產生拼字建議的方式。可以是下列其中一個 WdSpellingWordType 常數:wdAnagram、wdSpellword 或 wdWildcard。預設值是 wdSpellword。
- CustomDictionary2
型別:System.Object%
可能是傳回 Dictionary 的運算式,或是其他自訂字典的檔案名稱。您最多可以指定九部其他字典。
- CustomDictionary3
型別:System.Object%
可能是傳回 Dictionary 的運算式,或是其他自訂字典的檔案名稱。您最多可以指定九部其他字典。
- CustomDictionary4
型別:System.Object%
可能是傳回 Dictionary 的運算式,或是其他自訂字典的檔案名稱。您最多可以指定九部其他字典。
- CustomDictionary5
型別:System.Object%
可能是傳回 Dictionary 的運算式,或是其他自訂字典的檔案名稱。您最多可以指定九部其他字典。
- CustomDictionary6
型別:System.Object%
可能是傳回 Dictionary 的運算式,或是其他自訂字典的檔案名稱。您最多可以指定九部其他字典。
- CustomDictionary7
型別:System.Object%
可能是傳回 Dictionary 的運算式,或是其他自訂字典的檔案名稱。您最多可以指定九部其他字典。
- CustomDictionary8
型別:System.Object%
可能是傳回 Dictionary 的運算式,或是其他自訂字典的檔案名稱。您最多可以指定九部其他字典。
- CustomDictionary9
型別:System.Object%
可能是傳回 Dictionary 的運算式,或是其他自訂字典的檔案名稱。您最多可以指定九部其他字典。
- CustomDictionary10
型別:System.Object%
可能是傳回 Dictionary 的運算式,或是其他自訂字典的檔案名稱。您最多可以指定九部其他字典。
傳回值
型別:Microsoft.Office.Interop.Word.SpellingSuggestions
SpellingSuggestions 集合。
備註
選擇性參數
如需選擇性參數的詳細資訊,請參閱Office 方案中的選擇性參數。
範例
下列程式碼範例將有拼字錯誤文字的 Bookmark 控制項加入至第一個段落,然後在訊息方塊中顯示第一個拼字建議。
這是示範文件層級自訂的範例。
Private Sub BookmarkGetSpellingSuggestions()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
Bookmark1.Text = "missspeling."
Dim suggestions As Word.SpellingSuggestions = _
Bookmark1.GetSpellingSuggestions(IgnoreUppercase:=True, _
SuggestionMode:=Word.WdSpellingWordType.wdSpellword)
MessageBox.Show("The first suggestion is: " & suggestions(1).Name)
End Sub
private void BookmarkGetSpellingSuggestions()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
Microsoft.Office.Tools.Word.Bookmark bookmark1 =
this.Controls.AddBookmark(this.Paragraphs[1].Range,
"bookmark1");
bookmark1.Text = "missspeling.";
object IgnoreUppercase = true;
object SuggestionMode = Word.WdSpellingWordType.wdSpellword;
Word.SpellingSuggestions suggestions =
bookmark1.GetSpellingSuggestions(ref missing, ref IgnoreUppercase,
ref missing, ref missing, ref missing, ref missing,
ref missing, ref missing, ref missing, ref missing,
ref missing, ref missing, ref missing);
MessageBox.Show("The first suggestion is: " +
suggestions[1].Name);
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。