I cannot figure out how to set the EstimatedHours property from the StarTeam SDK. The EstimatedHours property is read-only, and I cannot determine how to set the value from the SDK, although through the user interface you can set the "Planning, work" field.

Setup EstimatedStart/Finishdoes not work:
var task = new Borland.StarTeam.Task(cr.ParentFolder);
task.Name = "Name";
task.Notes = "Notes";
task.EstimatedStart = DateTime.Now;
task.EstimatedFinish = DateTime.Now.AddHours(4);
task.Update();
source
share