/// <summary>
 /// Construct FeatureSourceRowEditEventArgs
 /// </summary>
 /// <param name="rowEditEventArgs"></param>
 /// <param name="shape"></param>
 public FeatureSourceRowEditEventArgs(RowEditEventArgs rowEditEventArgs, Shape shape)
 {
     RowEditEventArgs = rowEditEventArgs;
     Shape = shape;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FeatureSourceRowEditEventArgs"/> class.
 /// </summary>
 /// <param name="rowEditEventArgs">The RowEditEventArgs.</param>
 /// <param name="shape">The shape.</param>
 public FeatureSourceRowEditEventArgs(RowEditEventArgs rowEditEventArgs, Shape shape)
 {
     RowEditEventArgs = rowEditEventArgs;
     Shape            = shape;
 }
Пример #3
0
 protected void DayPilotScheduler1_OnRowEdit(object sender, RowEditEventArgs e)
 {
     e.Resource.Name = e.NewText;
     setDataSourceAndBind();
     DayPilotScheduler1.UpdateWithMessage("Resource name changed to : " + e.NewText);
 }