共用方式為


SerialDevice.StopBits 屬性

定義

取得或設定每個位元組的標準停止位數目。

public:
 property SerialStopBitCount StopBits { SerialStopBitCount get(); void set(SerialStopBitCount value); };
SerialStopBitCount StopBits();

void StopBits(SerialStopBitCount value);
public SerialStopBitCount StopBits { get; set; }
var serialStopBitCount = serialDevice.stopBits;
serialDevice.stopBits = serialStopBitCount;
Public Property StopBits As SerialStopBitCount

屬性值

SerialStopBitCount列舉中定義的其中一個值。

備註

在序列通訊中,傳輸會以開始位開始,後面接著 8 位的資料,並以停止位結束。 停止位的目的是分隔每個資料單位,或表示沒有資料可供傳輸。

適用於