UrlEditor 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
URL을 선택하기 위한 사용자 인터페이스를 제공합니다.
public ref class UrlEditor : System::Drawing::Design::UITypeEditor
public class UrlEditor : System.Drawing.Design.UITypeEditor
type UrlEditor = class
inherit UITypeEditor
Public Class UrlEditor
Inherits UITypeEditor
- 상속
- 파생
예제
public:
property String^ URL
{
[EditorAttribute(UrlEditor::typeid,UITypeEditor::typeid)]
String^ get()
{
return http_url;
}
[EditorAttribute(UrlEditor::typeid,UITypeEditor::typeid)]
void set( String^ value )
{
http_url = value;
}
}
private:
String^ http_url;
[EditorAttribute(typeof(System.Web.UI.Design.UrlEditor), typeof(UITypeEditor))]
public string URL
{
get
{
return http_url;
}
set
{
http_url = value;
}
}
private string http_url;
<EditorAttribute(GetType(System.Web.UI.Design.UrlEditor), GetType(UITypeEditor))> _
Public Property URL() As String
Get
Return http_url
End Get
Set
http_url = value
End Set
End Property
Private http_url As String
설명
UrlEditor 가 UITypeEditor URL 선택 대화 상자를 제공 하는 합니다.
생성자
UrlEditor() |
UrlEditor 클래스의 새 인스턴스를 초기화합니다. |
속성
Caption |
선택 대화 상자에 표시할 캡션을 가져옵니다. |
Filter |
편집기의 파일 이름 필터 문자열을 가져옵니다. 이 문자열은 대화 상자의 파일 목록에 표시되는 항목을 확인하는 데 사용됩니다. |
IsDropDownResizable |
드롭다운 편집기를 사용자가 크기 조정할 수 있는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 UITypeEditor) |
Options |
사용할 URL 빌더의 옵션을 가져옵니다. |