GetById

StructuredDocumentTagCollection.GetById method

Restituisce il tag del documento strutturato per identificatore.

public IStructuredDocumentTag GetById(int id)
ParametroTipoDescrizione
idInt32L’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