Sdílet prostřednictvím


SearchBar.GetIsSpellCheckEnabled Method

Definition

Overloads

GetIsSpellCheckEnabled(BindableObject)

Returns a Boolean value that tells whether the spellchecker is enabled.

GetIsSpellCheckEnabled(IPlatformElementConfiguration<Windows,SearchBar>)

Returns a Boolean value that tells whether the spellchecker is enabled.

GetIsSpellCheckEnabled(BindableObject)

Source:
SearchBar.cs
Source:
SearchBar.cs

Returns a Boolean value that tells whether the spellchecker is enabled.

public:
 static bool GetIsSpellCheckEnabled(Microsoft::Maui::Controls::BindableObject ^ element);
public static bool GetIsSpellCheckEnabled (Microsoft.Maui.Controls.BindableObject element);
static member GetIsSpellCheckEnabled : Microsoft.Maui.Controls.BindableObject -> bool
Public Function GetIsSpellCheckEnabled (element As BindableObject) As Boolean

Parameters

element
BindableObject

The search bar element.

Returns

true if the spellchecker is enabled. Otherwise, false.

Applies to

GetIsSpellCheckEnabled(IPlatformElementConfiguration<Windows,SearchBar>)

Source:
SearchBar.cs
Source:
SearchBar.cs

Returns a Boolean value that tells whether the spellchecker is enabled.

public:
[System::Runtime::CompilerServices::Extension]
 static bool GetIsSpellCheckEnabled(Microsoft::Maui::Controls::IPlatformElementConfiguration<Microsoft::Maui::Controls::PlatformConfiguration::Windows ^, Microsoft::Maui::Controls::SearchBar ^> ^ config);
public static bool GetIsSpellCheckEnabled (this Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.Windows,Microsoft.Maui.Controls.SearchBar> config);
static member GetIsSpellCheckEnabled : Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.Windows, Microsoft.Maui.Controls.SearchBar> -> bool
<Extension()>
Public Function GetIsSpellCheckEnabled (config As IPlatformElementConfiguration(Of Windows, SearchBar)) As Boolean

Parameters

config
IPlatformElementConfiguration<Windows,SearchBar>

The platform configuration for the search bar element.

Returns

true if the spellchecker is enabled. Otherwise, false.

Applies to