Last active
August 25, 2023 10:22
-
-
Save aspose-words-gists/770bf20bd617f3cb80031a74cc6c9b73 to your computer and use it in GitHub Desktop.
Aspose.Words for .NET. Table formatting in details using C#.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
table.AllowAutoFit = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(MyDir + "Tables.docx"); | |
Table table = (Table) doc.GetChild(NodeType.Table, 0, true); | |
table.AllowCellSpacing = true; | |
table.CellSpacing = 2; | |
doc.Save(ArtifactsDir + "WorkingWithTableStylesAndFormatting.AllowCellSpacing.docx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(MyDir + "Tables.docx"); | |
Table table = (Table) doc.GetChild(NodeType.Table, 0, true); | |
// Align the table to the center of the page. | |
table.Alignment = TableAlignment.Center; | |
// Clear any existing borders from the table. | |
table.ClearBorders(); | |
// Set a green border around the table but not inside. | |
table.SetBorder(BorderType.Left, LineStyle.Single, 1.5, Color.Green, true); | |
table.SetBorder(BorderType.Right, LineStyle.Single, 1.5, Color.Green, true); | |
table.SetBorder(BorderType.Top, LineStyle.Single, 1.5, Color.Green, true); | |
table.SetBorder(BorderType.Bottom, LineStyle.Single, 1.5, Color.Green, true); | |
// Fill the cells with a light green solid color. | |
table.SetShading(TextureIndex.TextureSolid, Color.LightGreen, Color.Empty); | |
doc.Save(ArtifactsDir + "WorkingWithTableStylesAndFormatting.ApplyOutlineBorder.docx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(doc); | |
Table table = builder.StartTable(); | |
builder.InsertCell(); | |
RowFormat rowFormat = builder.RowFormat; | |
rowFormat.Height = 100; | |
rowFormat.HeightRule = HeightRule.Exactly; | |
// These formatting properties are set on the table and are applied to all rows in the table. | |
table.LeftPadding = 30; | |
table.RightPadding = 30; | |
table.TopPadding = 30; | |
table.BottomPadding = 30; | |
builder.Writeln("I'm a wonderful formatted row."); | |
builder.EndRow(); | |
builder.EndTable(); | |
doc.Save(ArtifactsDir + "WorkingWithTableStylesAndFormatting.ApplyRowFormatting.docx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(doc); | |
// Insert a table with a width that takes up half the page width. | |
Table table = builder.StartTable(); | |
builder.InsertCell(); | |
table.PreferredWidth = PreferredWidth.FromPercent(50); | |
builder.Writeln("Cell #1"); | |
builder.InsertCell(); | |
builder.Writeln("Cell #2"); | |
builder.InsertCell(); | |
builder.Writeln("Cell #3"); | |
doc.Save(ArtifactsDir + "WorkingWithTables.AutoFitPageWidth.docx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(MyDir + "Tables.docx"); | |
Table table = (Table) doc.GetChild(NodeType.Table, 0, true); | |
table.AutoFit(AutoFitBehavior.AutoFitToContents); | |
doc.Save(ArtifactsDir + "WorkingWithTables.AutoFitTableToContents.docx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(MyDir + "Tables.docx"); | |
Table table = (Table) doc.GetChild(NodeType.Table, 0, true); | |
// Disable autofitting on this table. | |
table.AutoFit(AutoFitBehavior.FixedColumnWidths); | |
doc.Save(ArtifactsDir + "WorkingWithTables.AutoFitTableToFixedColumnWidths.docx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(MyDir + "Tables.docx"); | |
Table table = (Table) doc.GetChild(NodeType.Table, 0, true); | |
// Autofit the first table to the page width. | |
table.AutoFit(AutoFitBehavior.AutoFitToWindow); | |
doc.Save(ArtifactsDir + "WorkingWithTables.AutoFitTableToWindow.docx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(MyDir + "Tables.docx"); | |
Table table = (Table) doc.GetChild(NodeType.Table, 0, true); | |
// Clear any existing borders from the table. | |
table.ClearBorders(); | |
// Set a green border around and inside the table. | |
table.SetBorders(LineStyle.Single, 1.5, Color.Green); | |
doc.Save(ArtifactsDir + "WorkingWithTableStylesAndFormatting.BuildTableWithBorders.docx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(doc); | |
builder.StartTable(); | |
builder.InsertCell(); | |
// Sets the amount of space (in points) to add to the left/top/right/bottom of the cell's contents. | |
builder.CellFormat.SetPaddings(30, 50, 30, 50); | |
builder.Writeln("I'm a wonderful formatted cell."); | |
builder.EndRow(); | |
builder.EndTable(); | |
doc.Save(ArtifactsDir + "WorkingWithTableStylesAndFormatting.CellPadding.docx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(doc); | |
Table table = builder.StartTable(); | |
builder.InsertCell(); | |
// Set the borders for the entire table. | |
table.SetBorders(LineStyle.Single, 2.0, Color.Black); | |
// Set the cell shading for this cell. | |
builder.CellFormat.Shading.BackgroundPatternColor = Color.Red; | |
builder.Writeln("Cell #1"); | |
builder.InsertCell(); | |
// Specify a different cell shading for the second cell. | |
builder.CellFormat.Shading.BackgroundPatternColor = Color.Green; | |
builder.Writeln("Cell #2"); | |
builder.EndRow(); | |
// Clear the cell formatting from previous operations. | |
builder.CellFormat.ClearFormatting(); | |
builder.InsertCell(); | |
// Create larger borders for the first cell of this row. This will be different | |
// compared to the borders set for the table. | |
builder.CellFormat.Borders.Left.LineWidth = 4.0; | |
builder.CellFormat.Borders.Right.LineWidth = 4.0; | |
builder.CellFormat.Borders.Top.LineWidth = 4.0; | |
builder.CellFormat.Borders.Bottom.LineWidth = 4.0; | |
builder.Writeln("Cell #3"); | |
builder.InsertCell(); | |
builder.CellFormat.ClearFormatting(); | |
builder.Writeln("Cell #4"); | |
doc.Save(ArtifactsDir + "WorkingWithTableStylesAndFormatting.FormatTableAndCellWithDifferentBorders.docx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(MyDir + "Tables.docx"); | |
Table table = (Table) doc.GetChild(NodeType.Table, 0, true); | |
Cell firstCell = table.FirstRow.FirstCell; | |
firstCell.CellFormat.Width = 30; | |
firstCell.CellFormat.Orientation = TextOrientation.Downward; | |
firstCell.CellFormat.Shading.ForegroundPatternColor = Color.LightGreen; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(MyDir + "Tables.docx"); | |
Table table = (Table) doc.GetChild(NodeType.Table, 0, true); | |
// Retrieve the first row in the table. | |
Row firstRow = table.FirstRow; | |
firstRow.RowFormat.Borders.LineStyle = LineStyle.None; | |
firstRow.RowFormat.HeightRule = HeightRule.Auto; | |
firstRow.RowFormat.AllowBreakAcrossPages = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(doc); | |
// Insert a table row made up of three cells which have different preferred widths. | |
builder.StartTable(); | |
// Insert an absolute sized cell. | |
builder.InsertCell(); | |
builder.CellFormat.PreferredWidth = PreferredWidth.FromPoints(40); | |
builder.CellFormat.Shading.BackgroundPatternColor = Color.LightYellow; | |
builder.Writeln("Cell at 40 points width"); | |
// Insert a relative (percent) sized cell. | |
builder.InsertCell(); | |
builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20); | |
builder.CellFormat.Shading.BackgroundPatternColor = Color.LightBlue; | |
builder.Writeln("Cell at 20% width"); | |
// Insert a auto sized cell. | |
builder.InsertCell(); | |
builder.CellFormat.PreferredWidth = PreferredWidth.Auto; | |
builder.CellFormat.Shading.BackgroundPatternColor = Color.LightGreen; | |
builder.Writeln( | |
"Cell automatically sized. The size of this cell is calculated from the table preferred width."); | |
builder.Writeln("In this case the cell will fill up the rest of the available space."); | |
doc.Save(ArtifactsDir + "WorkingWithTables.PreferredWidthSettings.docx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(MyDir + "Tables.docx"); | |
Table table = (Table) doc.GetChild(NodeType.Table, 0, true); | |
table.AllowAutoFit = true; | |
Cell firstCell = table.FirstRow.FirstCell; | |
PreferredWidthType type = firstCell.CellFormat.PreferredWidth.Type; | |
double value = firstCell.CellFormat.PreferredWidth.Value; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment