Bookmark.Tables, propriété
Obtient une collection Tables qui représente tous les tableaux du contrôle Bookmark.
Espace de noms : Microsoft.Office.Tools.Word
Assembly : Microsoft.Office.Tools.Word (dans Microsoft.Office.Tools.Word.dll)
Syntaxe
'Déclaration
ReadOnly Property Tables As Tables
Tables Tables { get; }
Valeur de propriété
Type : Microsoft.Office.Interop.Word.Tables
Collection Tables qui représente tous les tableaux du contrôle Bookmark.
Exemples
L'exemple de code suivant ajoute au document un tableau de trois colonnes et trois lignes, puis ajoute un contrôle Bookmark au tableau.Ensuite, le code modifie la largeur des cellules du tableau dans le signet.
Cet exemple illustre une personnalisation au niveau du document.
Private Sub BookmarkCells()
Dim myTable As Word.Table
Me.Paragraphs(1).Range.InsertParagraphBefore()
myTable = Me.Tables.Add(Me.Paragraphs(1).Range, 3, 3)
Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
Me.Controls.AddBookmark(myTable.Range, "Bookmark1")
If Bookmark1.Tables.Count > 0 Then
Bookmark1.Cells.Width = Application.InchesToPoints(1)
End If
End Sub
private void BookmarkCells()
{
Word.Table myTable;
this.Paragraphs[1].Range.InsertParagraphBefore();
myTable = this.Tables.Add(this.Paragraphs[1].Range,
3, 3, ref missing, ref missing);
Microsoft.Office.Tools.Word.Bookmark bookmark1 =
this.Controls.AddBookmark(myTable.Range,
"bookmark1");
if (bookmark1.Tables.Count > 0)
{
bookmark1.Cells.Width = Application.InchesToPoints(1);
}
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.