FilterableAttribute.Filterable プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > FilterableAttribute.Filterable プロパティの意味・解説 

FilterableAttribute.Filterable プロパティ

メモ : このプロパティは、.NET Framework version 2.0新しく追加されたものです。

FilterableAttribute 属性適用するプロパティデバイスフィルタ処理サポートされているかどうかを示す値を取得します

名前空間: System.Web.UI
アセンブリ: System.Web (system.web.dll 内)
構文構文

Dim instance As FilterableAttribute
Dim value As Boolean

value = instance.Filterable
public bool Filterable { get;
 }
public:
property bool Filterable {
    bool get ();
}
/** @property */
public boolean get_Filterable ()

プロパティ
属性適用するプロパティデバイスフィルタ処理サポートされていることを示す場合trueそれ以外場合は、false

解説解説
使用例使用例

FilterableAttribute 属性カスタム コントロールプロパティ適用してプロパティデバイスフィルタ処理サポートされていないことを示す方法次のコード例示します

Imports System.ComponentModel
Imports System.Web.UI

Namespace Samples.AspNet.VB.Controls

    Public Class SimpleCustomControl
        Inherits System.Web.UI.WebControls.WebControl

        Dim _productID As String

        ' Set Filterable attribute to specify that this
        ' property does not support device filtering.
        <Bindable(True), Filterable(False)>
 Property ProductID() As String
            Get
                Return _productID
            End Get

            Set(ByVal Value As
 String)
                _productID = Value
            End Set
        End Property
    End Class

End Namespace

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace Samples.AspNet.CS.Controls
{
    public class SimpleCustomControl : WebControl
    {
        private string _productID;

        // Set Filterable attribute to specify that this
        // property does not support device filtering.
        [Bindable(true)]
        [Filterable(false)]
        public string ProductID
        {
            get
            {
                return _productID;
            }
            set
            {
                _productID = value;
            }
        }
    }
}

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
FilterableAttribute クラス
FilterableAttribute メンバ
System.Web.UI 名前空間
Default
No
Yes
IsDefaultAttribute
IsObjectFilterable
IsPropertyFilterable
IsTypeFilterable


このページでは「.NET Framework クラス ライブラリ リファレンス」からFilterableAttribute.Filterable プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からFilterableAttribute.Filterable プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からFilterableAttribute.Filterable プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「FilterableAttribute.Filterable プロパティ」の関連用語

FilterableAttribute.Filterable プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



FilterableAttribute.Filterable プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS