sealed
class ushort
An integer between 0 and 65535.
public
ushort
.
Constructor
(
value
)
const
ushort
ushort
.
MinValue
The minimum ushort value
const
ushort
ushort
.
MaxValue
The maximum ushort value
public
static
ushort
ushort
.
Convert
(
value
)
Convert value into type ushort, 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
=
ListBlock
{
Paragraph
{
"Min value "
;
ushort
.
MinValue
};
Paragraph
{
"Max value "
;
ushort
.
MaxValue
};
};
•
Min value 0
•
Max value 65535