1 instantiation of OptionDescription
PresentationFramework (1)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\OptionDescription.cs (1)
67var od = new OptionDescription(optionDescription.Id, optionDescription.Heading, optionDescription.Description);
7 references to OptionDescription
PresentationFramework (7)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\OptionDescription.cs (2)
63internal static OptionDescription Create(IOptionDescription optionDescription, bool shouldSuppressCOMExceptions = true, bool shouldReleaseCOMObject = true) 67var od = new OptionDescription(optionDescription.Id, optionDescription.Heading, optionDescription.Description);
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (5)
303private OptionDescription GetOptionDescriptionImpl(string optionId) 306return (iod != null) ? OptionDescription.Create(iod, false, true) : null; 309private OptionDescription GetOptionDescriptionImplWithRetries(string optionId, bool suppressCOMExceptions) 311OptionDescription optionDescription = null; 322public OptionDescription GetOptionDescription(string optionId, bool suppressCOMExceptions = true)