Hi how can i set horisontal alignment = right on a cell?
I can set Bottom alignment and it works, but i can't find horisontal alignment on a cell… help :)
DevExpress.XtraRichEdit.API.Native.Table table = serverDoc.Document.Tables.Add(serverDoc.Document.Range.End, dataTableRows + 1, columnsToDisplay.Count, AutoFitBehaviorType.AutoFitToContents);// .AutoFitToWindow);
Type tp = gridView1.VisibleColumns.View.GetRowCellValue(i, bb).GetType();
if (tp != typeof(string))
{
table.Cell(i + 1, ii).VerticalAlignment = TableCellVerticalAlignment.Bottom;
//Missing table.Cell(i + 1, ii).HorisontalAlignment = TableCellHorisontalAlignment.Right;
}
Awesome :) It works…Thanks