Class IndentatedNode
名称: Aspose.Note 合計: Aspose.Note.dll (25.4.0)
子どものノードに対する相対的なインデンテーションを持つノッドのためのベースクラス。
public class IndentatedNode<T> : CompositeNode<T>, INode, ICompositeNode<T>, ICompositeNode, IEnumerable<T>, IEnumerable, IIndentatedNode where T : INode
{
private readonly List<T> _children;
public IndentatedNode()
{
_children = new List<T>();
}
public void AddChild(T child)
{
_children.Add(child);
}
}
タイプパラメーター
T
コンポーネントノードの要素の種類
Inheritance
object
←
Node
←
CompositeNodeBase
←
CompositeNode
Implements
INode
,
ICompositeNode
相続人
CompositeNode
Constructors
ノードタイプ(NodeType)
Aspose.Note.IndentatedNode`1クラスの新しいインスタンスを開始します。
protected IndentatedNode(NodeType nodeType)
{
base.NodeType = nodeType;
}
Parameters
nodeType
NodeType
ノードの種類
Properties
IndentPosition
インデントポジションを取得または設定します。
public byte IndentPosition
{
get;
set;
}