DataFormats.Format 클래스
클립보드 형식 유형을 나타냅니다.
네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)
구문
‘선언
Public Class Format
‘사용 방법
Dim instance As Format
public class Format
public ref class Format
public class Format
public class Format
설명
형식은 텍스트 기반 형식 이름과 ID 번호로 구성됩니다. 형식 이름/ID 번호 쌍은 시스템 Clipboard 또는 다른 형식을 정의할 수 있습니다.
예제
다음 코드 예제에서는 형식 이름/ID 쌍을 나타내는 DataFormats.Format의 검색 방법을 보여 줍니다. UnicodeText 형식이 요청되고 검색된 DataFormats.Format의 내용이 입력란에 표시됩니다.
이 코드를 실행하려면 textBox1
이 만들어진 상태여야 합니다.
Private Sub GetMyFormatInfomation()
' Creates a DataFormats.Format for the Unicode data format.
Dim myFormat As DataFormats.Format = _
DataFormats.GetFormat(DataFormats.UnicodeText)
' Displays the contents of myFormat.
textBox1.Text = "ID value: " + myFormat.Id.ToString() + ControlChars.Cr _
+ "Format name: " + myFormat.Name
End Sub
private void GetMyFormatInfomation() {
// Creates a DataFormats.Format for the Unicode data format.
DataFormats.Format myFormat = DataFormats.GetFormat(DataFormats.UnicodeText);
// Displays the contents of myFormat.
textBox1.Text = "ID value: " + myFormat.Id + '\n' +
"Format name: " + myFormat.Name;
}
private:
void GetMyFormatInfomation()
{
// Creates a DataFormats.Format for the Unicode data format.
DataFormats::Format^ myFormat = DataFormats::GetFormat(
DataFormats::UnicodeText );
// Displays the contents of myFormat.
textBox1->Text = String::Format( "ID value: {0}\nFormat name: {1}",
myFormat->Id, myFormat->Name );
}
private void GetMyFormatInfomation()
{
// Creates a DataFormats.Format for the Unicode data format.
DataFormats.Format myFormat =
DataFormats.GetFormat(DataFormats.UnicodeText);
// Displays the contents of myFormat.
textBox1.set_Text("ID value: "
+ myFormat.get_Id() + '\n' + "Format name: " + myFormat.get_Name());
} //GetMyFormatInfomation
상속 계층 구조
System.Object
System.Windows.Forms.DataFormats.Format
스레드로부터의 안전성
이 형식의 모든 public static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.
플랫폼
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
참고 항목
참조
DataFormats.Format 멤버
System.Windows.Forms 네임스페이스
Clipboard 클래스
DataFormats 클래스
DataObject
IDataObject