Version

Editor Property (UltraExplorerBarSettingsBase)

Returns/sets the editor used for editing the Group/Item text.
Syntax
'Declaration
 
Public Property Editor As Infragistics.Win.EmbeddableEditorBase
public Infragistics.Win.EmbeddableEditorBase Editor {get; set;}
Example
The following code accesses the editor related properties for the first Group.

Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub Button51_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button51.Click

		If (Me.ultraExplorerBar1.Groups.Count > 0) Then
			' Set AllowEdit to true for the first Group.
			Me.ultraExplorerBar1.Groups(0).Settings.AllowEdit = DefaultableBoolean.True


			' Display some info about the editor attached to the first Group.
			If (Not Me.ultraExplorerBar1.Groups(0).Settings.Editor Is Nothing) Then
				If (Me.ultraExplorerBar1.Groups(0).Settings.Editor.IsInEditMode = True) Then
					Debug.WriteLine("The editor for the first group is in edit mode")
				Else
					Debug.WriteLine("The editor for the first group is not in edit mode")
				End If
			End If


			' Display whether or not we are using an editor control on the first group.
			If (Not Me.ultraExplorerBar1.Groups(0).Settings.EditorControl Is Nothing) Then
				Debug.WriteLine("The first group is using an editor control.")
			Else
				Debug.WriteLine("The first group is not using an editor control.")
			End If

		End If

	End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinExplorerBar;


		private void button51_Click(object sender, System.EventArgs e)
		{
			if (this.ultraExplorerBar1.Groups.Count	> 0)
			{
				// Set AllowEdit to true for the first Group.
				this.ultraExplorerBar1.Groups[0].Settings.AllowEdit = DefaultableBoolean.True;


				// Display some info about the editor attached to the first Group.
				if (this.ultraExplorerBar1.Groups[0].Settings.Editor	!= null)
				{
					if (this.ultraExplorerBar1.Groups[0].Settings.Editor.IsInEditMode == true)
						Debug.WriteLine("The editor for the first group is in edit mode");
					else
						Debug.WriteLine("The editor for the first group is not in edit mode");
				}


				// Display whether or not we are using an editor control on the first group.
				if (this.ultraExplorerBar1.Groups[0].Settings.EditorControl != null)
					Debug.WriteLine("The first group is using an editor control.");
				else
					Debug.WriteLine("The first group is not using an editor control.");
			}

		}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also