C# Class MonoMobile.Dialog.UIViewElement

This element can be used to insert an arbitrary UIView
There is no cell reuse here as we have a 1:1 mapping in this case from the UIViewElement to the cell that holds our view.
Inheritance: Element, IElementSizing
Mostra file Open project: moljac/MonoMobile.Dialog

Public Properties

Property Type Description
Flags CellFlags

Protected Properties

Property Type Description
View UIView

Public Methods

Method Description
GetCell ( UITableView tv ) : UITableViewCell
GetHeight ( UITableView tableView, NSIndexPath indexPath ) : float
UIViewElement ( string caption, UIView view, bool transparent ) : System

Constructor

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

GetCell() public method

public GetCell ( UITableView tv ) : UITableViewCell
tv UITableView
return UITableViewCell

GetHeight() public method

public GetHeight ( UITableView tableView, NSIndexPath indexPath ) : float
tableView UITableView
indexPath NSIndexPath
return float

UIViewElement() public method

Constructor
public UIViewElement ( string caption, UIView view, bool transparent ) : System
caption string /// The caption, only used for RootElements that might want to summarize results ///
view UIView /// The view to display ///
transparent bool /// If this is set, then the view is responsible for painting the entire area, /// otherwise the default cell paint code will be used. ///
return System

Property Details

Flags public_oe property

public CellFlags Flags
return CellFlags

View protected_oe property

protected UIView View
return UIView