Proprietà DocumentBase.ListParagraphs
Ottiene un insieme di ListParagraphs che rappresenta tutti i paragrafi numerati nel documento.
Spazio dei nomi: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Sintassi
'Dichiarazione
Public ReadOnly Property ListParagraphs As ListParagraphs
Get
public ListParagraphs ListParagraphs { get; }
Valore proprietà
Tipo: Microsoft.Office.Interop.Word.ListParagraphs
Insieme di ListParagraphs che rappresenta tutti i paragrafi numerati nel documento.
Esempi
Nell'esempio di codice riportato di seguito viene illustrato come aggiungere testo ai primi due paragrafi, come applicare la numerazione ai paragrafi e infine come visualizzare un messaggio contenente il numero totale di paragrafi numerati. Per utilizzare questo esempio, eseguirlo dalla classe ThisDocument in un progetto a livello di documento.
Private Sub DocumentListParagraphs()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Me.Paragraphs(1).Range.InsertParagraphAfter()
Me.Paragraphs(1).Range.Text = "This is the first paragraph."
Me.Paragraphs(2).Range.Text = "This is the second paragraph."
Dim Start As Object = Me.Paragraphs(1).Range.Start
Dim [End] As Object = Me.Paragraphs(2).Range.End
Dim myRange As Word.Range = Me.Range(Start, [End])
myRange.ListFormat.ApplyNumberDefault()
MessageBox.Show("Total numbered paragraphs: " & Me.ListParagraphs.Count)
End Sub
private void DocumentListParagraphs()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
this.Paragraphs[1].Range.InsertParagraphAfter();
this.Paragraphs[1].Range.Text = "This is the first paragraph.";
this.Paragraphs[2].Range.Text = "This is the second paragraph.";
object Start = this.Paragraphs[1].Range.Start;
object End = this.Paragraphs[2].Range.End;
Word.Range myRange = this.Range(ref Start,
ref End);
myRange.ListFormat.ApplyNumberDefault(ref missing);
MessageBox.Show("Total numbered paragraphs: " +
this.ListParagraphs.Count);
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.