RemoveByIndex

TabStopCollection.RemoveByIndex method

Elimina una tabulación en el índice especificado de la colección.

public void RemoveByIndex(int index)
ParámetroEscribeDescripción
indexInt32Un índice de la colección de tabulaciones.

Ejemplos

Muestra cómo seleccionar una tabulación en un documento por su índice y eliminarla.

Document doc = new Document();
TabStopCollection tabStops = doc.FirstSection.Body.Paragraphs[0].ParagraphFormat.TabStops;

tabStops.Add(ConvertUtil.MillimeterToPoint(30), TabAlignment.Left, TabLeader.Dashes);
tabStops.Add(ConvertUtil.MillimeterToPoint(60), TabAlignment.Left, TabLeader.Dashes);

Assert.AreEqual(2, tabStops.Count);

// Elimina la primera tabulación.
tabStops.RemoveByIndex(0);

Assert.AreEqual(1, tabStops.Count);

doc.Save(ArtifactsDir + "TabStopCollection.RemoveByIndex.docx");

Ver también