ArcObjects Library Reference (Carto)  

IGpsConnection.BaudRate Property

The baud rate for the communications port connected to the GPS receiver. Defaults to 9600.

[Visual Basic .NET]
Public Property BaudRate As Short
[C#]
public short BaudRate {get; set;}
[C++]
HRESULT get_BaudRate(
  short* pRate
);
[C++]
HRESULT put_BaudRate(
  short pRate
);
[C++]

Parameters

pRate [out, retval]   pRate is a parameter of type short pRate [in]   pRate is a parameter of type short

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

Specifies the baud rate of the GPS connection.  The values correspond to values in the esriGpsBaudRate enumeration.  In many cases this value will be the actual baud rate, but baud rates higher than 19200 will correspond to lower values in the enumeration since the property is represented as a 16 bit integer.

See Also

IGpsConnection Interface