HasSameTemplate

List.HasSameTemplate method

Restituisce vero se l’elenco corrente e l’elenco specificato vengono creati dallo stesso modello.

public bool HasSameTemplate(List other)

Esempi

Mostra come definire elenchi con lo stesso ListDefId.

Document doc = new Document(MyDir + "Different lists.docx");

Assert.True(doc.Lists[0].HasSameTemplate(doc.Lists[1]));
Assert.False(doc.Lists[1].HasSameTemplate(doc.Lists[2]));

Guarda anche