import com.aspose.words.*;
public class Main {
    public static void main(String[] args) throws Exception {
        License pdfLicense = new License();
        pdfLicense.setLicense("license.lic");

        Document doc = new Document("Table.docx");
        Table table = (Table)doc.getChild(NodeType.TABLE, 0, true);
        table.autoFit(AutoFitBehavior.AUTO_FIT_TO_WINDOW);
        doc.save("AdjustedTable.docx");
    }
}