WebBrowsableAttribute 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
WebBrowsableAttribute 클래스의 새 인스턴스를 초기화합니다.
오버로드
WebBrowsableAttribute() |
|
WebBrowsableAttribute(Boolean) |
WebBrowsableAttribute 속성에 지정된 값을 사용하여 Browsable 클래스의 새 인스턴스를 초기화합니다. |
WebBrowsableAttribute()
true
로 설정된 WebBrowsableAttribute 속성을 사용하여 Browsable 클래스의 새 인스턴스를 초기화합니다.
public:
WebBrowsableAttribute();
public WebBrowsableAttribute ();
Public Sub New ()
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 WebBrowsableAttribute 에 표시할 사용 가능한 웹 파트 컨트롤에 속성을 표시 하는 특성을 PropertyGridEditorPart 제어 합니다. 속성을 통해 검색 가능 하 게 설정 된 WebBrowsableAttribute 생성자입니다. 이 예제는 있는 보다 큰 예제의 일부는 PropertyGridEditorPart 클래스 개요입니다.
[Personalizable(), WebBrowsable(), WebDisplayName("Job Type"),
WebDescription("Select the category that corresponds to your job.")]
public JobTypeName UserJobType
{
get
{
object o = ViewState["UserJobType"];
if (o != null)
return (JobTypeName)o;
else
return _userJobType;
}
set { _userJobType = (JobTypeName)value; }
}
<Personalizable(), WebBrowsable(), WebDisplayName("Job Type"), _
WebDescription("Select the category that corresponds to your job.")> _
Public Property UserJobType() As JobTypeName
Get
Dim o As Object = ViewState("UserJobType")
If Not (o Is Nothing) Then
Return CType(o, JobTypeName)
Else
Return _userJobType
End If
End Get
Set(ByVal value As JobTypeName)
_userJobType = CType(value, JobTypeName)
End Set
End Property
설명
WebBrowsableAttribute 생성자를 사용 하 때 합니다 WebBrowsable
특성이 특성 선언을 통해 적용 되 [WebBrowsable()]
C# 또는 <WebBrowsable()>
Visual Basic의 합니다.
적용 대상
WebBrowsableAttribute(Boolean)
WebBrowsableAttribute 속성에 지정된 값을 사용하여 Browsable 클래스의 새 인스턴스를 초기화합니다.
public:
WebBrowsableAttribute(bool browsable);
public WebBrowsableAttribute (bool browsable);
new System.Web.UI.WebControls.WebParts.WebBrowsableAttribute : bool -> System.Web.UI.WebControls.WebParts.WebBrowsableAttribute
Public Sub New (browsable As Boolean)
매개 변수
- browsable
- Boolean
속성이 PropertyGridEditorPart에 표시되는지 여부를 나타내는 부울 값입니다.
설명
합니다 WebBrowsableAttribute 생성자를 사용 하 때는 WebBrowsable
특성은 부울 값을 사용 하 여 특성 선언을 통해 적용 됩니다. 속성에 표시 되지 않도록 방지 하기 위해를 PropertyGridEditorPart 컨트롤 속성 특성으로 표시 될 수 없습니다 [WebBrowsable(false)]
C# 또는 <WebBrowsable(false)>
Visual Basic의 합니다.