Class DictionaryData
The Dictionary data
Inheritance
System.Object
DictionaryData
Namespace: Syncfusion.EJ2.SpellChecker
Assembly: Syncfusion.EJ2.SpellChecker.dll
Syntax
public class DictionaryData : Object
Constructors
DictionaryData()
Initializes a new instance of the DictionaryData class.
Declaration
public DictionaryData()
Remarks
Use this overload if you are initializing the values through public properties.
DictionaryData(Int32, String, String)
Initializes a new instance of the DictionaryData class.
Declaration
public DictionaryData(int langID, string dictPath, string affPath)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | langID | language ID |
System.String | dictPath | Dictionary path |
System.String | affPath | Affix Path |
Remarks
Use this overload if you are not using a language specific custom dictionary.
DictionaryData(Int32, String, String, String)
Initializes a new instance of the DictionaryData class with a language specific custom dictionary.
Declaration
public DictionaryData(int langID, string dictPath, string affPath, string customPath)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | langID | language ID |
System.String | dictPath | Dictionary path |
System.String | affPath | Affix Path |
System.String | customPath | Custom path |
Remarks
Use this overload if you are using a language specific custom dictionary.
Properties
AffixPath
Gets or sets the value for Affix path
Declaration
public string AffixPath { get; set; }
Property Value
Type |
---|
System.String |
DictionaryPath
Gets or sets the value for Dictionary path
Declaration
public string DictionaryPath { get; set; }
Property Value
Type |
---|
System.String |
LanguadeID
Gets or sets thte value for language ID
Declaration
public int LanguadeID { get; set; }
Property Value
Type |
---|
System.Int32 |
PersonalDictPath
Gets or sets the personal dictionary path
Declaration
public string PersonalDictPath { get; set; }
Property Value
Type |
---|
System.String |