VB.NET question regrading Properties

iosoft

PC enthusiast since MS DOS 5
Skilled
Please have a look at this CODE -

Code:
For Each printer As System.Management.ManagementObject In printerList

   TextBox1.Text += printer.Properties("Name").Value.ToString + Environment.NewLine     

Next

This is an example code taken from Internet.

I want to know, what are the other Properties available inside printer.Properties ?

One is printer.Properties("Name"). I want to know what are the other Properties available.

EXAMPLE: (not related to VB nor .NET) in PHP there is a function print_r() which prints entire content of a array or structure. From that, we can see the complete structure.
 
Back
Top