You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// If you set all intensities to 255, the colour is white. If you set all intensities to 0, the colour is black.
12
12
/// When you set a colour, you are making a request. What you will get depends on the capabilities of the system and the current screen mode.
13
13
/// </summary>
14
-
15
14
publicclassColour
16
15
{
17
16
publicreadonlyintRed,Green,Blue;
@@ -62,7 +61,6 @@ public int Value
62
61
/// If you use messages, there is nothing to stop you setting a position that is in the middle of a CRLF pair, or in the middle of a 2 byte character.
63
62
/// However, keyboard commands will not move the caret into such positions.
64
63
/// </summary>
65
-
66
64
publicclassPosition:IEquatable<Position>
67
65
{
68
66
privatereadonlyintpos;
@@ -129,7 +127,7 @@ public static Position Max(Position a, Position b)
129
127
130
128
publicoverridestringToString()
131
129
{
132
-
return"Postion: "+pos;
130
+
return"Position: "+pos;
133
131
}
134
132
135
133
publicboolEquals(Positionother)
@@ -149,7 +147,7 @@ public override bool Equals(object obj)
149
147
150
148
publicoverrideintGetHashCode()
151
149
{
152
-
return(int)pos;
150
+
return(int)pos;
153
151
}
154
152
}
155
153
@@ -164,7 +162,6 @@ public override int GetHashCode()
164
162
/// On OS X, the Command key is mapped to SCMOD_CTRL and the Control key to SCMOD_META.SCMOD_SUPER is only available on GTK+ which is commonly the Windows key.
165
163
/// If you are building a table, you might want to use SCMOD_NORM, which has the value 0, to mean no modifiers.
166
164
/// </summary>
167
-
168
165
publicclassKeyModifier
169
166
{
170
167
privatereadonlyintvalue;
@@ -197,7 +194,6 @@ public struct CharacterRange
197
194
publicintcpMax;
198
195
}
199
196
200
-
201
197
publicclassCells
202
198
{
203
199
char[]charactersAndStyles;
@@ -210,7 +206,6 @@ public Cells(char[] charactersAndStyles)
0 commit comments