Hi,
Hi Purnima,
Project proj = new Project(@“Blank2010.mpp”);
TableField billablefld = new TableField();
billablefld.Field = Field.TaskFlag1;
billablefld.Width = 20;
billablefld.AlignData = System.Drawing.StringAlignment.Center;
billablefld.AlignTitle = System.Drawing.StringAlignment.Center;
billablefld.Title = “Billable”;
Aspose.Tasks.Table table = proj.Tables.ToList()[0];
table.TableFields.Insert(3, billablefld);
MPPSaveOptions options = new MPPSaveOptions();
options.WriteViewData = true;
proj.Save(“Output.mpp”, options);