'Declaration Public Property SpellCheckerForAppointmentSubject As Infragistics.Win.UltraWinSpellChecker.IUltraSpellChecker
public Infragistics.Win.UltraWinSpellChecker.IUltraSpellChecker SpellCheckerForAppointmentSubject {get; set;}
Imports Infragistics.Win.UltraWinSpellChecker Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Set the spell checker for the activity description field in the appointment dialog Me.UltraCalendarInfo1.SpellCheckerForActivityDescription = Me.UltraSpellChecker1 'Set the spell checker for the activity subject field in the appointment dialog Me.UltraCalendarInfo1.SpellCheckerForAppointmentSubject = Me.UltraSpellChecker1 'Set the calendar info for the week view Me.UltraWeekView1.CalendarInfo = Me.UltraCalendarInfo1 End Sub
using System.Windows.Forms; using Infragistics.Win.UltraWinSpellChecker; private void Form1_Load(object sender, System.EventArgs e) { //Set the spell checker for the activity description field in the appointment dialog this.ultraCalendarInfo1.SpellCheckerForActivityDescription = this.ultraSpellChecker1; //Set the spell checker for the activity subject field in the appointment dialog this.ultraCalendarInfo1.SpellCheckerForAppointmentSubject = this.ultraSpellChecker1; //Set the calendar info for the week view this.ultraWeekView1.CalendarInfo = this.ultraCalendarInfo1; }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2