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