'宣言 Public Sub ResetGroupItemAreaContextMenu()
public void ResetGroupItemAreaContextMenu()
UltraExplorerBarGroup 項目領域コンテキスト メニューは、ユーザーが Group の項目領域で右クリックしたときに表示されます。
デフォルトの Group 項目領域コンテキスト メニューは ContextMenuInitializing イベントで変更できます。このメソッドを使用すると、それらの変更を破棄できます。
注: Group 項目領域コンテキスト メニューを表示するには、ShowDefaultContextMenu プロパティを True に設定する必要があります。
' Each settable property on an Infragistics control or sub-object has an ' associated ResetXXX method (where XXX is the property name) ' that resets the property to its default value. If Me.myControl.ShouldSerializeFooProp() = True Then Me.myControl.ResetFooProp() End If If Me.myControl.SubObject.ShouldSerializeBarProp() = True Then Me.myControl.SubObject.ResetBarProp() End If ' Each Infragistics control and sub-object that has a settable property ' also has a Reset method that resets all settable properties to their ' default values. Me.myControl.Reset() Me.myControl.SubObject.Reset()
// Each settable property on an Infragistics control or sub-object has an // associated ResetXXX method (where XXX is the property name) // that resets the property to its default value. if (this.myControl.ShouldSerializeFooProp()) this.myControl.ResetFooProp(); if (this.myControl.SubObject.ShouldSerializeBarProp()) this.myControl.SubObject.ResetBarProp(); // Each Infragistics control and sub-object that has a settable property // also has a Reset method that resets all settable properties to their // default values. this.myControl.Reset(); this.myControl.SubObject.Reset();