PropertyGridObject.ICustomTypeDescriptor.GetClassName Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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);
}