Finding property values

  • Thread starter Thread starter Henk van Winkoop
  • Start date Start date
H

Henk van Winkoop

I like to control a comport.

//creating a serial port object
SerialPort sp=new SerialPort();

//setting baudrate
sp.BaudRate=2400;

//setting handshake
sp.Handshake=??????

How do I find out what kind of variables or enumerations or whatever
are accepted by 'Handshake'?

If I press F1 on 'Handskake' I only get links to examples, I would like to
see some list of items.

Henk
 
Henk van Winkoop said:
I like to control a comport.

//creating a serial port object
SerialPort sp=new SerialPort();

//setting baudrate
sp.BaudRate=2400;

//setting handshake
sp.Handshake=??????

How do I find out what kind of variables or enumerations or whatever
are accepted by 'Handshake'?

If I press F1 on 'Handskake' I only get links to examples, I would like to
see some list of items.

The docs for SerialPort.Handshake show the type - the
System.IO.Ports.Handshake enumeration.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top