次の方法で共有


Section.Add メソッド

定義

オーバーロード

Add(Element)

セクションに新しい子要素を追加します

Add(RootElement)
Add(IEnumerable<Element>)
古い.
Add(IEnumerable<UIView>)
Add(UIView)

Add(Element)

セクションに新しい子要素を追加します

public void Add (MonoTouch.Dialog.Element element);
member this.Add : MonoTouch.Dialog.Element -> unit

パラメーター

element
Element

セクションに追加する要素。

適用対象

Add(RootElement)

public void Add (MonoTouch.Dialog.RootElement element);
member this.Add : MonoTouch.Dialog.RootElement -> unit

パラメーター

element
RootElement

適用対象

Add(IEnumerable<Element>)

注意事項

Please use AddAll since this version will not work in future versions of MonoTouch when we introduce 4.0 covariance

[System.Obsolete("Please use AddAll since this version will not work in future versions of MonoTouch when we introduce 4.0 covariance")]
public int Add (System.Collections.Generic.IEnumerable<MonoTouch.Dialog.Element> elements);
member this.Add : seq<MonoTouch.Dialog.Element> -> int

パラメーター

elements
IEnumerable<Element>

戻り値

属性

適用対象

Add(IEnumerable<UIView>)

public void Add (System.Collections.Generic.IEnumerable<UIKit.UIView> views);
member this.Add : seq<UIKit.UIView> -> unit

パラメーター

適用対象

Add(UIView)

public void Add (UIKit.UIView view);
member this.Add : UIKit.UIView -> unit

パラメーター

view
UIView

適用対象