Share via


PropertyGridObject.ICustomTypeDescriptor.GetClassName Method

Definition

Returns the name of the class for the property grid.

 virtual System::String ^ System.ComponentModel.ICustomTypeDescriptor.GetClassName() = System::ComponentModel::ICustomTypeDescriptor::GetClassName;
string ICustomTypeDescriptor.GetClassName ();
Function GetClassName () As String Implements ICustomTypeDescriptor.GetClassName

Returns

The name of the class for the property grid.

Implements

Examples

The following example duplicates the <xref:Microsoft.Web.Management.Client.PropertyGridObject.System.ComponentModel.ICustomTypeDescriptor.GetClassName%2A> method.

Trace.WriteLine(MyGetClassName());
string MyGetClassName() {
    return TypeDescriptor.GetClassName(this, true);
} 

Applies to