Upravit

Sdílet prostřednictvím


RootElement Constructors

Definition

Overloads

RootElement(String)

Initializes a RootSection with a caption

RootElement(String, Group)

Initializes a RootElement that renders the summary based on the radio settings of the contained elements.

RootElement(String, Func<RootElement,UIViewController>)
RootElement(String, Int32, Int32)

Initializes a RootElement with a caption with a summary fetched from the specified section and element

RootElement(String)

Initializes a RootSection with a caption

public RootElement (string caption);
new MonoTouch.Dialog.RootElement : string -> MonoTouch.Dialog.RootElement

Parameters

caption
String

The caption to render.

Applies to

RootElement(String, Group)

Initializes a RootElement that renders the summary based on the radio settings of the contained elements.

public RootElement (string caption, MonoTouch.Dialog.Group group);
new MonoTouch.Dialog.RootElement : string * MonoTouch.Dialog.Group -> MonoTouch.Dialog.RootElement

Parameters

caption
String

The caption to render

group
Group

The group that contains the checkbox or radio information. This is used to display the summary information when a RootElement is rendered inside a section.

Applies to

RootElement(String, Func<RootElement,UIViewController>)

public RootElement (string caption, Func<MonoTouch.Dialog.RootElement,UIKit.UIViewController> createOnSelected);
new MonoTouch.Dialog.RootElement : string * Func<MonoTouch.Dialog.RootElement, UIKit.UIViewController> -> MonoTouch.Dialog.RootElement

Parameters

caption
String
createOnSelected
Func<RootElement,UIViewController>

Applies to

RootElement(String, Int32, Int32)

Initializes a RootElement with a caption with a summary fetched from the specified section and element

public RootElement (string caption, int section, int element);
new MonoTouch.Dialog.RootElement : string * int * int -> MonoTouch.Dialog.RootElement

Parameters

caption
String

The caption to render cref="System.String"/>

section
Int32

The section that contains the element with the summary.

element
Int32

The element index inside the section that contains the summary for this RootSection.

Applies to