windowsforms-devexpress-dot-aiintegration-dot-winforms-d477fa61.md
SmartPaste analyzes the content you copy, creates a new appointment, and intelligently assigns the correct values to the appropriate appointment settings.
Namespace : DevExpress.AIIntegration.WinForms
Assembly : DevExpress.AIIntegration.WinForms.v25.2.dll
NuGet Package : DevExpress.AIIntegration.WinForms
public sealed class SmartPasteSchedulerBehavior :
Behavior<ISmartPasteSchedulerBehaviorSource>
Public NotInheritable Class SmartPasteSchedulerBehavior
Inherits Behavior(Of ISmartPasteSchedulerBehaviorSource)
SmartPaste allows you to create appointments in the WinForms Scheduler by pasting text content directly from the clipboard. SmartPaste recognizes common appointment-specific data (subject, dates, times, location, agenda) and fills corresponding fields in the Scheduler’s appointment editor.
SmartPaste can detect and configure the following settings:
public partial class Form1 : RibbonForm {
public Form1() {
InitializeComponent();
schedulerControl.Start = System.DateTime.Now;
// The behaviorManager1 component must be added to the Form at design time.
behaviorManager1.Attach<SmartPasteSchedulerBehavior>(schedulerControl, behavior => {
behavior.Properties.Temperature = 0.3f;
});
}
}
See the following help topic for more information and examples: Smart Paste AI-powered Extension.
Object DevExpress.Utils.MVVM.BehaviorBase DevExpress.Utils.Behaviors.Behavior DevExpress.Utils.Behaviors.Behavior<DevExpress.AIIntegration.WinForms.ISmartPasteSchedulerBehaviorSource> SmartPasteSchedulerBehavior
See Also
Smart Paste AI-powered Extension