DocumentBase.Frames プロパティ
文書内のすべてのフレームを表す Frames コレクションを取得します。
名前空間: Microsoft.Office.Tools.Word
アセンブリ: Microsoft.Office.Tools.Word.v4.0.Utilities (Microsoft.Office.Tools.Word.v4.0.Utilities.dll 内)
構文
'宣言
Public ReadOnly Property Frames As Frames
public Frames Frames { get; }
プロパティ値
型 : Microsoft.Office.Interop.Word.Frames
文書内のすべてのフレームを表す Frames コレクション。
例
次のコード例では、最初の段落にテキストを追加し、そのテキストにテキスト フレームを追加します。その後、テキスト フレームを wdLineStyleDouble に変更します。この例を使用するには、これをドキュメント レベルのプロジェクトの ThisDocument クラスから実行します。
Private Sub DocumentFrames()
Dim textFrame As Word.Frame
Me.Paragraphs(1).Range.InsertParagraphAfter()
Me.Paragraphs(1).Range.Text = "Sample paragraph text."
textFrame = Me.Frames.Add(Me.Paragraphs(1).Range)
textFrame.Borders.OutsideLineStyle = Microsoft.Office.Interop. _
Word.WdLineStyle.wdLineStyleDouble
End Sub
private void DocumentFrames()
{
Word.Frame textFrame;
this.Paragraphs[1].Range.InsertParagraphAfter();
this.Paragraphs[1].Range.Text = "Sample paragraph text.";
textFrame = this.Frames.Add(this.Paragraphs[1].Range);
textFrame.Borders.OutsideLineStyle = Microsoft.Office.Interop.Word
.WdLineStyle.wdLineStyleDouble;
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。