Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "RtsControl" in [All]

Enums

.

public enum RtsControl : int

.

Public Enum RtsControl As Integer

.

End Enum ' RtsControl

Structures

2: 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.


 
Access PInvoke.net directly from VS: