The namespace and name of the class.
[Visual Basic] ReadOnly Property FullName As String [C#] string FullName {get;} [C++] String* get_FullName() = 0; [JScript] abstract function get FullName() : String;
A string containing the namespace and name of the class.
This value can be used by NGWS runtime reflection to obtain a Class reference:
public Class GetClassFromCodeClass(ICodeClass cls) { return Class.GetClass(cls.GetFullName()); }
ICodeClass Interface | ICodeClass Members | System.ComponentModel.Design.CodeModel Namespace