Default implementation of ITextBlock.
sealed class
|
TextBlock
|
extends
|
DocumentNode
|
||
implements
|
ITextBlock
|
Serialization information about this type.
public
static
readonly
field
|
SerialId
|
||
type
|
ISerialTypeInfo
|
Is this document node empty (i.e. it contains whitespace only)?
public
override
property
|
IsEmpty
{
get
}
|
||
type
|
bool
|
||
value
|
true
if
this
document
node
is
empty,
false
if
not. |
||
implements
|
DocumentNode.IsEmpty
|
Returns the serial type of this object.
public
property
|
SerialType
{
get
}
|
||
type
|
ISerialTypeInfo
|
||
value
|
|
The serial type. | |
inherited
|
SerializableBase.SerialType
|
Returns the serial data version.
public
virtual
property
|
SerialVersion
{
get
}
|
||
type
|
int32
|
||
value
|
|
The serial data version tag. | |
inherited
|
SerializableBase.SerialVersion
|
Remarks:
An ISerializable implementation is required to support all versions up to the one returned by SerialVersion.
See also:
ISerializable.SerializeThe preformatted block of text.
public
property
|
Text
{
get
set
}
|
||
type
|
string
|
||
value
|
|
The text. | |
implements
|
ITextBlock.Text
|
Remarks:
The text block does not have any leading or trailing empty lines. Leading whitespaces are removed from each line as long as the indentation is not affected. Trailing whitespaces are removed from each line.
Text blocks should have at most 100 characters per line.
Creates a new instance of TextBlock.
public
constructor
|
TextBlock
()
|
Creates a new instance of TextBlock.
public
constructor
|
TextBlock
(string text)
|
||
params
|
text
|
[not-null]
|
The block of text. |
Accepts the given node visitor.
public
override
method
|
Accept
(IDocumentNodeVisitor visitor,
object userData)
|
||
params
|
visitor
|
The
visitor
to
accept.
If
null
the
method
shall
return
silently.
|
|
userData
|
Optional user data object. | ||
implements
|
DocumentNode.Accept
|
Initializes the state of this object from the given data stream.
public
override
method
|
Deserialize
(int32 serialVersion,
ISerializer data)
|
||
type
|
ISerializable
|
||
params
|
serialVersion
|
[>=1]
|
The serial data version. |
data
|
[not-null]
|
The serial data stream. | |
returns
|
|
The
deserialized
object.
This
will
typically
be
this ,
but
in
some
circumstances,
another
instance
may
be
returned
(e.g.
singletons).
|
|
overrides
|
SerializableBase.Deserialize
|
Remarks:
The Deserialize method will be called immediately after the object has been instantiated via its default constructor.
The provided serialVersion number is guaranteed to be equal to or less than the SerialVersion returned by this object (i.e. ISerializable object must provide backwards compatibility).
See also:
ISerializable.SerializeSerializes the current state of this object to the given data stream.
public
override
method
|
Serialize
(ISerializer data)
|
||
params
|
data
|
[not-null]
|
The serial data stream. |
overrides
|
SerializableBase.Serialize
|
See also:
ISerializable.Deserialize
[Pure]
|
||||
public
override
sealed
method
|
ToString
()
|
|||
type
|
string
|
|||
inherited
|
DocumentNode.ToString
|
Validates the state of this object.
public
override
method
|
Validate
(Validator validator)
|
||
params
|
validator
|
[not-null]
|
The validator object. |
overrides
|
DocumentNode.Validate
|
Produces source code by feeding the given source code writer.
public
override
method
|
WriteSourceCode
(SourceCodeWriter writer,
Context context)
|
||
params
|
writer
|
[not-null]
|
The source code writer to use. |
context
|
[not-null]
|
Context information. | |
implements
|
DocumentNode.WriteSourceCode
|