GetById
Contenuti
[
Nascondere
]StructuredDocumentTagCollection.GetById method
Restituisce il tag del documento strutturato per identificatore.
public IStructuredDocumentTag GetById(int id)
Parametro | Tipo | Descrizione |
---|---|---|
id | Int32 | L’identificatore del tag del documento strutturato. |
Osservazioni
Restituisce null se non è possibile trovare il tag del documento strutturato con l’identificatore specificato.
Esempi
Mostra come ottenere il tag del documento strutturato.
Document doc = new Document(MyDir + "Structured document tags by id.docx");
// Ottieni il tag del documento strutturato in base all'ID.
IStructuredDocumentTag sdt = doc.Range.StructuredDocumentTags.GetById(1160505028);
Console.WriteLine(sdt.IsRanged());
Console.WriteLine(sdt.Title);
// Ottieni il tag del documento strutturato o il tag con intervalli in base al titolo.
sdt = doc.Range.StructuredDocumentTags.GetByTitle("Alias4");
Console.WriteLine(sdt.Id);
Guarda anche
- interface IStructuredDocumentTag
- class StructuredDocumentTagCollection
- spazio dei nomi Aspose.Words.Markup
- assemblea Aspose.Words