Desktop Functions: Smart Device Functions:
|
Search Results for "RtsControl" in [All]Enums1: RtsControl
public enum RtsControl : int
Public Enum RtsControl As Integer
End Enum ' RtsControl Structures2: DCB
private static readonly BitVector32.Section fRtsControl;
fRtsControl = BitVector32.CreateSection(3, previousSection);
previousSection = BitVector32.CreateSection(1, fRtsControl);
public RtsControl RtsControl
get { return (RtsControl)Flags[fRtsControl]; }
set { Flags[fRtsControl] = (int)value; } See also DtrControl and RtsControl fRtsControl = BitVector32.CreateSection(3, previousSection); You will notice that fDtrControl expects 2 and fRtsControl expect 3. Why? The reason is that the highest value within enum DtrControl is 2, and highest valye within enum RtsControl is 3. |