Skip to main content
A newer version of this page is available. .

SpellChecker.ParentContainer Property

Gets or sets the control, representing the parent container for the XtraSpellChecker instance.

Namespace: DevExpress.XtraSpellChecker

Assembly: DevExpress.XtraSpellChecker.v21.2.dll

NuGet Packages: DevExpress.Win.Design, DevExpress.Win.SpellChecker

Declaration

public Control ParentContainer { get; set; }

Property Value

Type Description
Control

A Control object, which is the parent container for the controls to be checked.

Remarks

Use the ParentContainer property to specify the control that contains the controls which should be checked for spelling mistakes. It could be a form or a panel populated with text controls. You can check all controls contained within the parent container by calling the SpellChecker.CheckContainer method without parameter. In the SpellCheckMode.AsYouType checking mode the spellchecker can be activated automatically for each control within the ParentContainer if the CheckAsYouTypeOptions.CheckControlsInParentContainer option is set to true.

See Also