다음을 통해 공유


Bookmark.GetSpellingSuggestions 메서드

Bookmark 컨트롤의 첫 번째 단어에 대해 철자를 대신할 제안 단어를 나타내는 SpellingSuggestions 컬렉션을 가져옵니다.

네임스페이스:  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 컨트롤에 있는 첫 번째 단어의 언어 서식에 해당하는 기본 사전을 사용합니다.
  • CustomDictionary2
    형식: System.Object%
    Dictionary 를 반환하는 식이거나 추가 사용자 지정 사전의 파일 이름입니다.9개의 추가 사전을 지정할 수 있습니다.
  • CustomDictionary3
    형식: System.Object%
    Dictionary 를 반환하는 식이거나 추가 사용자 지정 사전의 파일 이름입니다.9개의 추가 사전을 지정할 수 있습니다.
  • CustomDictionary4
    형식: System.Object%
    Dictionary 를 반환하는 식이거나 추가 사용자 지정 사전의 파일 이름입니다.9개의 추가 사전을 지정할 수 있습니다.
  • CustomDictionary5
    형식: System.Object%
    Dictionary 를 반환하는 식이거나 추가 사용자 지정 사전의 파일 이름입니다.9개의 추가 사전을 지정할 수 있습니다.
  • CustomDictionary6
    형식: System.Object%
    Dictionary 를 반환하는 식이거나 추가 사용자 지정 사전의 파일 이름입니다.9개의 추가 사전을 지정할 수 있습니다.
  • CustomDictionary7
    형식: System.Object%
    Dictionary 를 반환하는 식이거나 추가 사용자 지정 사전의 파일 이름입니다.9개의 추가 사전을 지정할 수 있습니다.
  • CustomDictionary8
    형식: System.Object%
    Dictionary 를 반환하는 식이거나 추가 사용자 지정 사전의 파일 이름입니다.9개의 추가 사전을 지정할 수 있습니다.
  • CustomDictionary9
    형식: System.Object%
    Dictionary 를 반환하는 식이거나 추가 사용자 지정 사전의 파일 이름입니다.9개의 추가 사전을 지정할 수 있습니다.
  • CustomDictionary10
    형식: System.Object%
    Dictionary 를 반환하는 식이거나 추가 사용자 지정 사전의 파일 이름입니다.9개의 추가 사전을 지정할 수 있습니다.

반환 값

형식: 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 보안

  • 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.

참고 항목

참조

Bookmark 인터페이스

Microsoft.Office.Tools.Word 네임스페이스