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;
}