This document is archived and information here might be outdated.  Recommended version.


IGpsConnection.BaudRate Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > IG > IGpsConnection Interface > IGpsConnection.BaudRate Property
ArcGIS Developer Help

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(
  System.Int16* 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