ParameterCollectionEditor クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
関連付けられているデータ ソース コントロールの Parameters
プロパティによって指定される ParameterCollection オブジェクトのコンポーネント エディターを提供します。
public ref class ParameterCollectionEditor : System::Drawing::Design::UITypeEditor
public class ParameterCollectionEditor : System.Drawing.Design.UITypeEditor
type ParameterCollectionEditor = class
inherit UITypeEditor
Public Class ParameterCollectionEditor
Inherits UITypeEditor
- 継承
例
次のコード例は、 属性をEditorAttribute使用して、 クラスと UITypeEditor (コレクション エディターの基本クラス) クラスをカスタム コントロールの プロパティにSelectParameters
関連付けるParameterCollectionEditor方法を示しています。
private ParameterCollection selectParams;
// Associate the ParameterCollectionEditor with the SelectParameters.
[Editor(typeof(System.Web.UI.Design.WebControls.
ParameterCollectionEditor),
typeof(UITypeEditor))]
public ParameterCollection SelectParameters
{
get
{
// If there is no selectParams collection, create it.
if (selectParams == null)
selectParams = new ParameterCollection();
return selectParams;
}
set { selectParams = value; }
} // SelectParameters
Private selectParams As ParameterCollection
' Associate the ParameterCollectionEditor with the SelectParameters.
<EditorAttribute(GetType(System.Web.UI.Design.WebControls. _
ParameterCollectionEditor), _
GetType(UITypeEditor))> _
Public Property SelectParameters() As ParameterCollection
Get
If selectParams Is Nothing Then
selectParams = New ParameterCollection()
End If
Return selectParams
End Get
Set(ByVal value As ParameterCollection)
selectParams = value
End Set
End Property ' SelectParameters
注釈
クラスは ParameterCollectionEditor 、いずれかのプロパティで指定されたデザイン時に Parameter オブジェクトの要素を ParameterCollection 編集するためのユーザー インターフェイスを Parameters
提供します。 プロパティにはParameters
、 SelectParametersFilterParametersDeleteParametersInsertParametersおよびそのUpdateParameters他のデータ ソース コントロールの ObjectDataSource、SqlDataSource、および プロパティが含まれます。
ParameterCollectionEditorは、ビジュアル デザイナーの [プロパティ] グリッドのプロパティの Parameters
1 つにある省略記号 (...) ボタンを選択して呼び出されます。
メソッドは EditValue 、 Parameter 関連付けられたデータ ソース コントロールの の ParameterCollection 要素を編集します。 メソッドは GetEditStyle 、このエディターに関連付けられている編集スタイルを取得します。
コンストラクター
ParameterCollectionEditor() |
ParameterCollectionEditor クラスの新しいインスタンスを初期化します。 |
プロパティ
IsDropDownResizable |
ユーザーがドロップダウン エディターのサイズを変更できるかどうかを示す値を取得します。 (継承元 UITypeEditor) |
メソッド
適用対象
こちらもご覧ください
.NET