iLemming
iLemming

Reputation: 36166

MonoTouch Dialog. StyledStringElement's Height

Is it possible to change the Element's height somehow?

Upvotes: 1

Views: 1213

Answers (1)

poupou
poupou

Reputation: 43553

Implement IElementSizing

public interface IElementSizing {
    float GetHeight (UITableView tableView, NSIndexPath indexPath);
}

Look at MultilineElement or StyledMultilineElement for examples.

Upvotes: 5

Related Questions