Interface ICompositeNode

Interface ICompositeNode

ชื่อพื้นที่: Aspose.Note การประกอบ: Aspose.Note.dll (25.4.0)

อินเตอร์เฟซสําหรับคิวส์ที่สามารถมี nodes อื่น ๆ

public interface ICompositeNode
   {
      ICompositeNode Parent { get; set; }
      IEnumerable<ICompositeNode> Children { get; }
   }

Methods

GetChildNodes(NodeType)

รับ nodes ของเด็กทั้งหมดตามชนิดของ node

[Obsolete("Use GetChildNodes<t>() method instead.")]
   List<inode> GetChildNodes(NodeType type)
   {
   }

Parameters

type NodeType

ชนิดของ node

Returns

List < INode >

รายการของช่องคลอดเด็ก

GetChildNodes()

รับ nodes ของเด็กทั้งหมดตามชนิดของ node

List<T1> GetChildNodes<T1>() where T1 : class, INode
   {
   }

Returns

List

รายการของช่องคลอดเด็ก

ประเภทพารามิเตอร์

T1

ประเภทขององค์ประกอบในรายการที่กลับมา

 แบบไทย