SetColumnsAlignment

IMathMatrix.SetColumnsAlignment method

Set the horizontal alignment of the specified columns

public void SetColumnsAlignment(int columnIndex, uint columnsCount, MathHorizontalAlignment val)
ParameterTypeDescription
columnIndexInt32Zero-based index of the first column to set alignment
columnsCountUInt32The number of columns to specify the alignment
valMathHorizontalAlignmentNew value of horizontal alignment of specified column

Examples

Example:

[C#]
IMathMatrix matrix = new MathMatrix(2, 3);
matrix.SetColumnAlignment(0, 3, MathHorizontalAlignment.Left);

See Also