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