Search
Calendar.CompleteModify Method
See Also
 





Completes an interactive modification of an item, previously started by a call to StartModify.

Namespace: MindFusion.Scheduling.WinForms
Assembly: MindFusion.Scheduling

 Syntax

C#  Copy Code

public bool CompleteModify (
    Point point
)

Visual Basic  Copy Code

Public Function CompleteModify( _
    point As Point _
) As Boolean

 Parameters

point

The final point of the interactive modification.

 Return Value

true if there was a started modification before the call; otherwise, false.

 Remarks

Through the use of the StartModify, UpdateModify, CompleteModify and CancelModify methods you can implement item drag operations within the Calendar control. This is useful in certain situations, such as when implementing OLE drag & drop operation over the Calendar control and you want the dragged item to be modified within the control before the drag & drop operation is complete.

 See Also