Reflection: display the member of Form Class : Reflection « Development « VB.Net






Reflection: display the member of Form Class

Reflection: display the member of Form Class
  
Imports System
Imports System.Collections
Imports System.Data
Imports System.IO
Imports System.Xml.Serialization
Imports System.Windows.Forms
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Drawing.Text
Imports System.Drawing.Printing


Public Class MainClass
    Shared Sub Main()

      Dim aForm As New Windows.Forms.Form()
      Dim aType As Type
      aType = aForm.GetType()

      Dim member As Object
      Console.WriteLine("Members of the Form class")
      For Each member In aType.GetMembers
        Console.Write(member.ToString)
      Next
    End Sub
End Class


           
         
    
  








Related examples in the same category

1.Reflection Information for Integer ClassReflection Information for Integer Class
2.Fill Reflection Data into ListViewFill Reflection Data into ListView
3.Use Reflection to create Class instance and call methodUse Reflection to create Class instance and call method
4.Define Attributes and Use Reflection to get its valueDefine Attributes and Use Reflection to get its value
5.Get Method information and invoke Method using Reflection APIGet Method information and invoke Method using Reflection API
6.Get Method InformationGet Method Information
7.Get Class Member and Property Information from base and inherited ClassGet Class Member and Property Information from base and inherited Class
8.Reflector Utilities
9.The AssemblyCopyrightAttribute sets the Copyright field on the Version tab.
10.The AssemblyDescriptionAttribute sets the Comment item.
11.The AssemblyCompanyAttribute sets the Company item
12.The AssemblyProductAttribute sets the Product Name item
13.Define the assembly's only module. For a single-file assembly, the module name is the assembly name.
14.The AssemblyTitleAttribute sets the Description field on the General tab and the Version tab of the Windows file properties dialog.