The directions in which a vehicle can proceed its journey on the current lane
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Member Name | Description | Value |
---|---|---|
None | The lane has no direction since it ends before a intersection is reached. | 0 |
Right | Only a right turn is permitted. | 1 |
Ahead | No turns are permitted. | 2 |
Left | Only a left turn is permitted. | 4 |
RightAhead | A right turn or straight ahead is permitted. | 3 |
AheadLeft | Straight ahead or a left turn is permitted. | 6 |
RightLeft | A right or a left turn is permitted. | 5 |
All | All directions (right, ahead, left) are permitted. | 7 |
Namespace: CBPRS.Infrastructure
Assembly: Infrastructure (in Infrastructure.dll)
CBPRS.Infrastructure Namespace