ShowAddButton Property

UltimateSpell

Collapse imageExpand ImageCopy imageCopyHover image
Gets or sets a value that indicates whether to show the "Add to Dictionary" button when CustomDictionary is set.

Namespace: Karamasoft.WebControls.UltimateSpell
Assembly: UltimateSpell (in UltimateSpell.dll) Version: 3.7.4186.26738

Syntax

C#
public virtual bool ShowAddButton { get; set; }
Visual Basic
Public Overridable Property ShowAddButton As Boolean
	Get
	Set
Visual C++
public:
virtual property bool ShowAddButton {
	bool get ();
	void set (bool value);
}

Field Value

true if the "Add to Dictionary" button is shown; otherwise, false. The default value is true.

Remarks

Use this property to show the "Add to Dictionary" button when CustomDictionary is set.

You should set the CustomDictionary property to a value in order to display the "Add to Dictionary" button. Otherwise it will not display this button.

You should set this property to false when you want to hide the "Add to Dictionary" button. However, it will still use the custom dictionary if the CustomDictionary property is set to a value.

See Also