Skip to content

Latest commit

 

History

History
169 lines (85 loc) · 3.89 KB

VisualStyle.md

File metadata and controls

169 lines (85 loc) · 3.89 KB
layout title description platform control documentation
post
VisualStyle in Windows Forms Spell Checker control | Syncfusion
Learn about VisualStyle support in Syncfusion Windows Forms Spell Checker (SpellCheckerAdv) control and more details.
WindowsForms
SpellCheckerAdv
ug

VisualStyle in Windows Forms Spell Checker (SpellCheckerAdv)

The SpellCheckerAdv control has rich set of themes for professional representation. You can easily modify the look and feel of the SpellCheckerAdv using the built-in themes.

It has the below themes.

• Default

• Metro

• Office2016Colorful

• Office2016White

• Office2016DarkGray

• Office2016Black

The following code example allows you to set the VisualStyle for the SpellCheckerAdv.

Default

This option helps to set the Default theme.

{% tabs %}

{% highlight C# %}

this.spellCheckerAdv1.VisualStyle = Syncfusion.Windows.Forms.Tools.SpellCheckerAdvStyle.Default;

{% endhighlight %}

{% highlight VB %}

Me.spellCheckerAdv1.VisualStyle = Syncfusion.Windows.Forms.Tools.SpellCheckerAdvStyle.Default

{% endhighlight %}

{% endtabs %}

Default Theme appearance in SpellCheckerAdv

Metro

This option helps to set the Metro theme.

{% tabs %}

{% highlight C# %}

this.spellCheckerAdv1.VisualStyle = Syncfusion.Windows.Forms.Tools.SpellCheckerAdvStyle.Metro;

{% endhighlight %}

{% highlight VB %}

Me.spellCheckerAdv1.VisualStyle = Syncfusion.Windows.Forms.Tools.SpellCheckerAdvStyle.Metro

{% endhighlight %}

{% endtabs %}

Metro Theme appearance in SpellCheckerAdv

Office2016Colorful

This option helps to set the Office2016Colorful theme.

{% tabs %}

{% highlight C# %}

this.spellCheckerAdv1.VisualStyle = Syncfusion.Windows.Forms.Tools.SpellCheckerAdvStyle.Office2016Colorful;

{% endhighlight %}

{% highlight VB %}

Me.spellCheckerAdv1.VisualStyle = Syncfusion.Windows.Forms.Tools.SpellCheckerAdvStyle.Office2016Colorful

{% endhighlight %}

{% endtabs %}

Office2016 Colorful Theme appearance in SpellCheckerAdv

Office2016White

This option helps to set the Office2016White theme.

{% tabs %}

{% highlight C# %}

this.spellCheckerAdv1.VisualStyle = Syncfusion.Windows.Forms.Tools.SpellCheckerAdvStyle.Office2016White;

{% endhighlight %}

{% highlight VB %}

Me.spellCheckerAdv1.VisualStyle = Syncfusion.Windows.Forms.Tools.SpellCheckerAdvStyle.Office2016White

{% endhighlight %}

{% endtabs %}

Office2016 White Theme appearance in SpellCheckerAdv

Office2016DarkGray

This option helps to set the Office2016DarkGray theme.

{% tabs %}

{% highlight C# %}

this.spellCheckerAdv1.VisualStyle = Syncfusion.Windows.Forms.Tools.SpellCheckerAdvStyle.Office2016DarkGray;

{% endhighlight %}

{% highlight VB %}

Me.spellCheckerAdv1.VisualStyle = Syncfusion.Windows.Forms.Tools.SpellCheckerAdvStyle.Office2016DarkGray

{% endhighlight %}

{% endtabs %}

Office2016 DarkGray Theme appearance in SpellCheckerAdv

Office2016Black

This option helps to set the Office2016Black theme.

{% tabs %}

{% highlight C# %}

this.spellCheckerAdv1.VisualStyle = Syncfusion.Windows.Forms.Tools.SpellCheckerAdvStyle.Office2016Black;

{% endhighlight %}

{% highlight VB %}

Me.spellCheckerAdv1.VisualStyle = Syncfusion.Windows.Forms.Tools.SpellCheckerAdvStyle.Office2016Black

{% endhighlight %}

{% endtabs %}

Office2016 Black Theme appearance in SpellCheckerAdv

N> Refer to the following sample link that demonstrates the Visual Style support in SpellCheckerAdv.