Bookmark.Collapse メソッド
Bookmark コントロールを開始位置または終了位置に向かって折りたたみます。
名前空間: Microsoft.Office.Tools.Word
アセンブリ: Microsoft.Office.Tools.Word (Microsoft.Office.Tools.Word.dll 内)
構文
'宣言
Sub Collapse ( _
ByRef direction As Object _
)
void Collapse(
ref Object direction
)
パラメーター
- direction
型 : System.Object%
Bookmark を折りたたむ方向。WdCollapseDirection 定数 (wdCollapseEnd または wdCollapseStart) のどちらかです。既定値 wdCollapseStart です。
解説
Bookmark コントロールが折りたたまれた後は、開始位置と終了位置が同じになります。
wdCollapseEnd を使用して段落全体を参照する Bookmark コントロールを折りたたむと、範囲がその段落の終了記号の後 (次の段落の先頭) に置かれます。ただし、Bookmark コントロールを折りたたんだ後、MoveEnd メソッドを使用して範囲を 1 文字前に移動させることができます。
省略可能なパラメーター
省略可能なパラメーターについては、「Office ソリューションの省略可能なパラメーター」を参照してください。
例
次のコードは、テキストを指定して Bookmark コントロールを追加し、ブックマークを折りたたむ前と後のブックマークの開始位置および終了位置を表示します。
この例は、ドキュメント レベルのカスタマイズ用に作成されています。
Private Sub BookmarkCollapse()
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("Start and end of Bookmark1 before calling Collapse: " _
& Bookmark1.Start.ToString() & " and " & Bookmark1.End.ToString)
Dim Direction As Object = Word.WdCollapseDirection.wdCollapseEnd
Bookmark1.Collapse(Direction)
MessageBox.Show("Start and end of Bookmark1 after calling Collapse: " _
& Bookmark1.Start.ToString() & " and " & Bookmark1.End.ToString)
End Sub
private void BookmarkCollapse()
{
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("Start and end of bookmark1 before calling Collapse: " +
bookmark1.Start.ToString() + " and " + bookmark1.End.ToString());
object Direction = Word.WdCollapseDirection.wdCollapseEnd;
bookmark1.Collapse(ref Direction);
MessageBox.Show("Start and end of bookmark1 after calling Collapse: " +
bookmark1.Start.ToString() + " and " + bookmark1.End.ToString());
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。