2016-03-24 10 views

Antwort

1

Verwenden Sie das folgende Codebeispiel, um die Farbe des Texts in der Zelle der Tabelle zu ändern. Hoffe das hilft dir.

//Load the document 
Document doc = new Document(MyDir + "in.docx"); 

//Get the first table in the document 
Table table = (Table)doc.getChild(NodeType.TABLE, 0, true); 

//Get the first cell of first row 
Cell cell = (Cell)table.getRows().get(0).getCells().get(0); 

//Change the color of text 
for (Run run : (Iterable<Run>)cell.getChildNodes(NodeType.RUN, true)) 
{ 
    run.getFont().setColor(Color.BLUE); 
} 

//Save the document 
doc.save(MyDir + "Out.docx"); 

Ich arbeite mit Aspose als Entwickler Evangelist.

+0

Danke. Es funktionierte. :) – sgiri