Bookmark.Find 속성
Bookmark 컨트롤 내의 찾기 작업에 대한 기준이 들어 있는 Find 개체를 가져옵니다.
네임스페이스: Microsoft.Office.Tools.Word
어셈블리: Microsoft.Office.Tools.Word(Microsoft.Office.Tools.Word.dll)
구문
‘선언
ReadOnly Property Find As Find
Get
Find Find { get; }
속성 값
형식: Microsoft.Office.Interop.Word.Find
Bookmark 컨트롤 내의 찾기 작업에 대한 기준이 들어 있는 Find 개체입니다.
예제
다음 코드 예제에서는 텍스트가 있는 Bookmark 컨트롤을 첫 번째 단락에 추가한 다음 책갈피 내에서 sample 단어를 replacement단어로 바꿉니다.
이 예제는 문서 수준 사용자 지정을 위한 것입니다.
Private Sub BookmarkFind()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
Bookmark1.Text = "This is sample bookmark text."
MessageBox.Show("Bookmark text before using Find method: " & Bookmark1.Text)
Bookmark1.Find.Execute(FindText:="sample", ReplaceWith:="replacement", _
Replace:=Word.WdReplace.wdReplaceAll, Forward:=True)
MessageBox.Show("Bookmark text after using Find method: " & Bookmark1.Text)
End Sub
private void BookmarkFind()
{
object FindText = "sample";
object ReplaceWith = "replacement";
object Replace = Word.WdReplace.wdReplaceAll;
object Forward = true;
this.Paragraphs[1].Range.InsertParagraphBefore();
Microsoft.Office.Tools.Word.Bookmark bookmark1 =
this.Controls.AddBookmark(this.Paragraphs[1].Range,
"bookmark1");
bookmark1.Text = "This is sample bookmark text.";
MessageBox.Show("Bookmark text before using Find method: " + bookmark1.Text);
bookmark1.Find.Execute(ref FindText, ref missing, ref missing,
ref missing, ref missing, ref Forward, ref missing, ref
missing,ref missing,ref ReplaceWith, ref Replace, ref missing,
ref missing, ref missing, ref missing);
MessageBox.Show("Bookmark text after using Find method: " + bookmark1.Text);
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.