sealed
class char
A single unicode character.
public
char
.Constructor(
value
)
public
static
char
char
.Null
The null character ''
public
char
char
.Compliment
Returns the genetic compliment of the character
public
char
char
.ToLower
Returns a lowercase version
public
char
char
.ToUpper
Returns an uppercase version
public
bool
char
.IsLower
Returns true if the character is lowercase
public
bool
char
.IsUpper
Returns true if the character is uppercase
public
static
char
char
.Convert(
value
)
Convert value into type char, null if not successful
public
static
char
char
.Null
The null character ''
public
char
char
.Compliment
Returns the genetic compliment of the character
public
char
char
.ToLower
Returns a lowercase version
public
char
char
.ToUpper
Returns an uppercase version
public
bool
char
.IsLower
Returns true if the character is lowercase
public
bool
char
.IsUpper
Returns true if the character is uppercase
public
static
char
char
.Convert(
value
)
Convert value into type char, null if not successful
public
virtual
object
.GetLayoutTip
Return a layout for the hint popup
public
virtual
object
.GetLayoutSpan
Return a layout inside a span
public
virtual
object
.GetLayoutBlock
Return a layout inside a block
public
virtual
object
.GetSourceReference
Return a source reference for this object
public
virtual
void
object
.GetTexSource(
source
)
LaTeX source code for this object
public
virtual
Icon
object
.GetIcon
Return a icon for this object
public
virtual
int
object
.Compare(
value
)
Compares this object with another and returns (-1, 0, or 1)
Example 1
Example
=
Paragraph
{
"Line 1"
;
linefeed
;
"Line 2"
;
linefeed
;
"A dime is 10"
;
'\u00A2'
;
};
Line 1
Line 2
A dime is 10¢
Example 2
Example2
=
Paragraph
{
var
c
=
'A'
;
"The ascii value of '
{0}
' is
{1}
."
(
c
,
c
as
int
);
};
The ascii value of 'A' is 65.