System::Xml::XmlSignificantWhitespace 类

XmlSignificantWhitespace class

表示混合内容节点中标记之间的空白或 xml:space=‘preserve’ 范围内的空白,也称为显著空白。

class XmlSignificantWhitespace : public System::Xml::XmlCharacterData

方法

方法描述
CloneNode(bool) override创建此节点的副本。
get_LocalName() override返回节点的本地名称。
get_Name() override返回节点的限定名称。
get_NodeType() override返回当前节点的类型。
get_PreviousText() override返回紧接此节点之前的文本节点。
get_Value() override返回节点的值。
set_Value(String) override设置节点的值。
WriteContentTo(const SharedPtr<XmlWriter>&) override将节点的所有子节点保存到指定的 XmlWriter
WriteTo(const SharedPtr<XmlWriter>&) override将节点保存到指定的 XmlWriter

Typedefs

类型定义描述
Ptr此类实例的共享指针别名。

备注

此类的对象只能使用 System::MakeObject() 函数分配。切勿在栈上或使用 new 运算符创建此类型的实例,因为这会导致运行时错误和/或断言故障。始终将此类包装到 System::SmartPtr 指针中,并使用该指针将其作为参数传递给函数。

另见