PropertyGridObject.ICustomTypeDescriptor.GetClassName メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
プロパティ グリッドのクラスの名前を返します。
virtual System::String ^ System.ComponentModel.ICustomTypeDescriptor.GetClassName() = System::ComponentModel::ICustomTypeDescriptor::GetClassName;
string ICustomTypeDescriptor.GetClassName ();
Function GetClassName () As String Implements ICustomTypeDescriptor.GetClassName
戻り値
プロパティ グリッドのクラスの名前。
実装
例
次の例では、 メソッドを <xref:Microsoft.Web.Management.Client.PropertyGridObject.System.ComponentModel.ICustomTypeDescriptor.GetClassName%2A> 複製しています。
Trace.WriteLine(MyGetClassName());
string MyGetClassName() {
return TypeDescriptor.GetClassName(this, true);
}