Click or drag to resize
KaxSpellCustomDictionarySourceTypeName Property
Gets or sets the fully qualified type name that will be used to store and read the custom dictionary.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public string CustomDictionarySourceTypeName { get; set; }

Property Value

Type: String
Remarks
The type name must be fully qualified if the type is in a GAC-deployed assembly. The type must implement the ICustomDictionarySource interface.
Examples
C#
spell1.CustomDictionarySourceTypeName = "KaxSpellExtensions.CustomDictionarySource, KaxSpellExtensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b5e57ccb698eab8e";
VB
spell1.CustomDictionarySourceTypeName = "KaxSpellExtensions.CustomDictionarySource, KaxSpellExtensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b5e57ccb698eab8e"
See Also