private void ConfigureCollectionViewCell(YetCollectionViewCell cell, NSIndexPath indexPath)
 {
     if (_provider != null)
     {
         cell.Text     = _provider.TitleForRow(this, indexPath.Row);
         cell.Selected = SelectedCellIndexPath == indexPath;
         cell.Delegate = this;
     }
 }
 public bool UseTwolineModeForCollectionViewCell(YetCollectionViewCell cvCell) => UseTwoLineMode;
 public UIColor TextColorForCollectionViewCell(YetCollectionViewCell cvCell) => TextColor;
        // IYetCollectionViewCellDelegate

        public UIFont FontForCollectionViewCell(YetCollectionViewCell cvCell) => Font;