Version

SpellCheckerForActivityDescription Property (UltraCalendarInfo)

Gets/sets the component that will perform spell checking on the description field of an acivity.
Syntax
'Declaration
 
Public Property SpellCheckerForActivityDescription As Infragistics.Win.UltraWinSpellChecker.IUltraSpellChecker
public Infragistics.Win.UltraWinSpellChecker.IUltraSpellChecker SpellCheckerForActivityDescription {get; set;}
Example
This sample demonstrates how to implement spell checking in the appointment dialog using the UltraSpellChecker component.

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;

}
Requirements

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

See Also