バージョン

AnimationSpeed 列挙体

UltraExplorerBar コントロール内のアニメーションの速度を決定する列挙体。
シンタックス
'宣言
 
Public Enum AnimationSpeed 
   Inherits System.Enum
public enum AnimationSpeed : System.Enum 
メンバ
メンバ解説
Fastアニメーション速度が速い。
Mediumアニメーション速度が中程度。
Slowアニメーション速度が遅い。
使用例
Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button3.Click

		' Turn on Group animation and set the animation speed to fast.  This will animate the
		' opening, closing and selection of Groups.
		Me.ultraExplorerBar1.AnimationEnabled = True
		Me.ultraExplorerBar1.AnimationSpeed = AnimationSpeed.Fast


		' If BorderStyle is set to 'Default' and the resolved border style is not raised,
		' set it to raised now.
		If (Me.ultraExplorerBar1.BorderStyle = UIElementBorderStyle.Default AndAlso Me.ultraExplorerBar1.BorderStyleResolved <> UIElementBorderStyle.Raised) Then
			Me.ultraExplorerBar1.BorderStyle = UIElementBorderStyle.Raised
		End If


		' If the control style is Listbar or Toolbox, show the built-in context menus.
		If (Me.ultraExplorerBar1.Style = UltraExplorerBarStyle.Listbar Or _
		    Me.ultraExplorerBar1.Style = UltraExplorerBarStyle.Toolbox) Then
			Me.ultraExplorerBar1.ShowDefaultContextMenu = True

		End If

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


		private void button3_Click(object sender, System.EventArgs e)
		{
			// Turn on Group animation and set the animation speed to fast.  This will animate the
			// opening, closing and selection of Groups.
			this.ultraExplorerBar1.AnimationEnabled = true;
			this.ultraExplorerBar1.AnimationSpeed	= AnimationSpeed.Fast;


			// If BorderStyle is set to 'Default' and the resolved border style is not raised,
			// set it to raised now.
			if (this.ultraExplorerBar1.BorderStyle			== UIElementBorderStyle.Default	&&
				this.ultraExplorerBar1.BorderStyleResolved	!= UIElementBorderStyle.Raised)
				this.ultraExplorerBar1.BorderStyle	= UIElementBorderStyle.Raised;


			// If the control style is Listbar or Toolbox, show the built-in context menus.
			if (this.ultraExplorerBar1.Style == UltraExplorerBarStyle.Listbar  ||
				this.ultraExplorerBar1.Style == UltraExplorerBarStyle.Toolbox)
				this.ultraExplorerBar1.ShowDefaultContextMenu = true;

		}
参照