TreeNodeStyleCollection.Insert(Int32, TreeNodeStyle) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定的 TreeNodeStyle 对象插入 TreeNodeStyleCollection 对象中的指定索引位置。
public:
void Insert(int index, System::Web::UI::WebControls::TreeNodeStyle ^ style);
public void Insert (int index, System.Web.UI.WebControls.TreeNodeStyle style);
member this.Insert : int * System.Web.UI.WebControls.TreeNodeStyle -> unit
Public Sub Insert (index As Integer, style As TreeNodeStyle)
参数
- index
- Int32
要插入 TreeNodeStyle 对象的从零开始的索引位置。
- style
- TreeNodeStyle
要插入的 TreeNodeStyle。
注解
Insert使用 方法将指定的 TreeNodeStyle 对象插入到TreeNodeStyleCollection指定从零开始的索引处的对象中。
或者,可以使用 方法将 对象追加TreeNodeStyle到 的TreeNodeStyleCollectionAdd末尾。