We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71050bb commit 07afb42Copy full SHA for 07afb42
FileFormat.Words/OpenXML.Words.cs
@@ -215,9 +215,11 @@ private WP.JustificationValues MapAlignmentToJustification(ParagraphAlignment al
215
case ParagraphAlignment.Center:
216
return WP.JustificationValues.Center;
217
case ParagraphAlignment.Right:
218
- return WP.JustificationValues.Right;
219
- default:
+ return WP.JustificationValues.Right;
+ case ParagraphAlignment.Justify:
220
return WP.JustificationValues.Both;
221
+ default:
222
+ return WP.JustificationValues.Left;
223
}
224
225
0 commit comments