SubMenuStyleCollection.Insert(Int32, SubMenuStyle) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 SubMenuStyle 对象插入到 SubMenuStyleCollection 集合中的指定索引处。
public:
void Insert(int index, System::Web::UI::WebControls::SubMenuStyle ^ style);
public void Insert (int index, System.Web.UI.WebControls.SubMenuStyle style);
member this.Insert : int * System.Web.UI.WebControls.SubMenuStyle -> unit
Public Sub Insert (index As Integer, style As SubMenuStyle)
参数
- index
- Int32
应插入 SubMenuStyle 对象的从零开始的索引位置。
- style
- SubMenuStyle
插入到 SubMenuStyle 集合中的 SubMenuStyleCollection 对象。
例外
指定的 index
在集合范围之外。
指定的 style
为 null
。
注解
如果索引为 -1, style
则插入集合的 SubMenuStyleCollection 开头。 如果索引等于集合中的项数, style
则追加到集合末尾 SubMenuStyleCollection 。
在 OnValidate 将样式参数添加到集合之前,调用该方法以验证样式参数。 在 OnInsert 对象插入集合之前 SubMenuStyle 调用该方法,并在 OnInsertComplete 插入对象后调用该方法。