Method | Description | |
---|---|---|
Add ( |
Adds a new child Element to the Section
|
|
Add ( IEnumerable |
Adds the UIViews to the section.
|
|
Add ( UIView view ) : void |
Use to add a UIView to a section, it makes the section opaque, to get a transparent one, you must manually call UIViewElement
|
|
AddAll ( IEnumerable |
Add version that can be used with LINQ
|
|
Clear ( ) : void | ||
GetEnumerator ( ) : IEnumerator |
Enumerator to get all the elements in the Section.
|
|
Insert ( int idx, UITableViewRowAnimation anim, IEnumerable |
||
Insert ( int index ) : void | ||
Insert ( int idx, UITableViewRowAnimation anim ) : void |
Inserts a series of elements into the Section using the specified animation
|
|
Remove ( |
||
Remove ( int idx ) : void | ||
RemoveRange ( int start, int count ) : void |
Removes a range of elements from the Section
|
|
RemoveRange ( int start, int count, UITableViewRowAnimation anim ) : void |
Remove a range of elements from the section with the given animation
|
|
Section ( ) : CoreGraphics |
Constructs a Section without header or footers.
|
|
Section ( UIView header ) : CoreGraphics | ||
Section ( UIView header, UIView footer ) : CoreGraphics | ||
Section ( string caption ) : CoreGraphics |
Constructs a Section with the specified header
|
|
Section ( string caption, string footer ) : CoreGraphics |
Constructs a Section with a header and a footer
|
|
this ( int idx ) : |
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void | ||
GetCellImpl ( UITableView tv ) : UITableViewCell |
Method | Description | |
---|---|---|
Add ( IEnumerable |
||
InsertVisual ( int idx, UITableViewRowAnimation anim, int count ) : void |
public Add ( |
||
element | /// An element to add to the section. /// | |
return | void |
public Add ( IEnumerable |
||
views | IEnumerable |
/// An enumarable list that can be produced by something like: /// from x in ... select (UIView) new UIFoo (); /// |
return | void |
public AddAll ( IEnumerable |
||
elements | IEnumerable |
/// An enumerable list that can be produced by something like: /// from x in ... select (Element) new MyElement (...) /// |
return | int |
protected GetCellImpl ( UITableView tv ) : UITableViewCell | ||
tv | UITableView | |
return | UITableViewCell |
public Insert ( int idx, UITableViewRowAnimation anim, IEnumerable |
||
idx | int | |
anim | UITableViewRowAnimation | |
newElements | IEnumerable |
|
return | int |
public Insert ( int idx, UITableViewRowAnimation anim ) : void | ||
idx | int | /// The index where the elements are inserted /// |
anim | UITableViewRowAnimation | /// The animation to use /// |
return | void |
public RemoveRange ( int start, int count ) : void | ||
start | int | /// Starting position /// |
count | int | /// Number of elements to remove from the section /// |
return | void |
public RemoveRange ( int start, int count, UITableViewRowAnimation anim ) : void | ||
start | int | /// Starting position /// |
count | int | /// Number of elements to remove form the section /// |
anim | UITableViewRowAnimation | /// The animation to use while removing the elements /// |
return | void |
public Section ( UIView header ) : CoreGraphics | ||
header | UIView | |
return | CoreGraphics |
public Section ( UIView header, UIView footer ) : CoreGraphics | ||
header | UIView | |
footer | UIView | |
return | CoreGraphics |
public Section ( string caption ) : CoreGraphics | ||
caption | string | /// The header to display /// |
return | CoreGraphics |
public Section ( string caption, string footer ) : CoreGraphics | ||
caption | string | /// The caption to display (or null to not display a caption) /// |
footer | string | /// The footer to display. /// |
return | CoreGraphics |