Class Name of EmbeddedWindowControl

Hello everyone,

I am trying to get all the class names of Container Controls inside another Container Control. My Code is:

  for i as Integer=0 to self.ControlCount-1
    dim c as Control = self.Control(i)
    dim ti as Introspection.TypeInfo = Introspection.GetType(c)
    if c IsA ContainerControl or c isA EmbeddedWindowControl then
      lvContainersArray.Append(ti.Name)
    end
  next

Apparently ti.Name does not bring ClassName.
Is there a way to store class Names of Containers?

Thank you