-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathTextFlowDirectionEnum.cs
36 lines (33 loc) · 1.06 KB
/
TextFlowDirectionEnum.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Iot.Device.SparkFunLcd
{
using System;
using System.Device.I2c;
using System.Drawing;
using System.Threading;
using Iot.Device.CharacterLcd;
/// <summary>
/// LCD library for SparkFun RGB Serial Open LCD display (sizes 20x4 or 16x2) with I2C connection
/// for product information see https://www.sparkfun.com/products/16398
/// code based on https://github.com/sparkfun/OpenLCD.
/// </summary>
public partial class SparkFunLcd
{
/// <summary>
/// Text flow.
/// </summary>
/// <see cref="SetTextFlowDirectionState"/>
public enum TextFlowDirectionEnum
{
/// <summary>
/// Left to right, the direction common to most Western languages.
/// </summary>
LeftToRight,
/// <summary>
/// Right to left.
/// </summary>
RightToLeft
}
}
}