Search
Calendar.AllowInplaceCreate Property
See Also
 





Gets or sets a value indicating whether users are allowed to create items interactively.

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

 Syntax

C#  Copy Code

public bool AllowInplaceCreate { get; set; }

Visual Basic  Copy Code

Public Property AllowInplaceCreate As Boolean

 Property Value

true to allow users to create schedule items; otherwise, false. The default is true.

 Remarks

If this property is disabled, users cannot create items interactively. If it is enabled and InteractiveItemType is not null (Nothing in Visual Basic), a new schedule item of the specified type is created when users start typing in a time cell. This raises the ItemCreating event, which lets your application validate the operation or cancel it.

 See Also