This guide describes how to autofit table in Word using Java. It shares the details of setting the IDE, a list of steps, and a sample code showing how to make table fit in Word using Java. You may set various configurations to control the table adjustment in the Word file.
Steps to Fit Table to Page in Word using Java
- Set the IDE to use Aspose.Words for Java to adjust tables
- Open the Word file with a table using the Document class object
- Fetch the target Table Node using the NodeType.TABLE option
- Typecast the extracted node to a Table object
- Invoke the autoFit() method in the Table class
- Save the output with an adjusted table
These steps explain how to autofit a table in Word using Java. Load the Ward file with tables, access the target node by providing the index, and typecast it to a Table. Call the autoFit() method by providing the autofit behavior and save the output file.
Code to Adjust Table in Word using Java
This code has demonstrated how to use autofit in Word using Java. You can select any other node using the NodeType enumerator. If you want to autofit the table according to the contents of the cells, use the AUTO_FIT_TO_CONTENTS option, and for keeping the column’s width fixed, use the FIXED_COLUMN_WIDTHS option.
This article has taught us the process of auto-fitting the tables. If you want to create a new table, refer to the article on Create a table of contents in Word using Java.