Forums     Knowledge Base     OfficeWriter Online     
 
 
This documentation is for
OfficeWriter v3.8.1
.NET Platform

View Docs for Another
Version or Platform

Programmer's Reference > WordApplication API > TableFormatting > Justification

Justification Property


C# Signature:

VB.NET Signature:


Description:

Sets or returns a ParagraphFormatting.Justification object that represents the justification for a table created with this formatting. Possible values: Left, Center, Right, LeftRight.

Justification is a read / write property.



Examples:

[csharp]
// Return Justification
ParagraphFormatting.Justification oJustification = oTableFormatting.Justification;
// Set Justification
oTableFormatting.Justification = ParagraphFormatting.Justification.Center;
[vbnet]
' Return Justification
Dim oJustification As ParagraphFormatting.Justification = oTableFormatting.Justification
' Set Justification
oTableFormatting.Justification = ParagraphFormatting.Justification.Center


Getter

Signature:

Returns:

ParagraphFormatting.Justification A ParagraphFormatting.Justification object that represents the justification for a table created with this formatting.

Setter

Signature:

public void Justification ParagraphFormatting.Justification jc

Type:

ParagraphFormatting.Justification



Copyright 2007 © SoftArtisans, Inc. All Rights Reserved.