private void AlternateCellColor()
 {
     if (AspyUtilities.IsOdd(_indexValue) && this._bHasAlternateGridBGColor)
     {
         this.BackgroundView.BackgroundColor = iOSUIAppearance.GlobaliOSTheme.ViewCellBGUIColorTransition.Value;
     }
 }
 public CGRect rectCurrentOrientation(AspyGlobals myGlobals)
 {
     if (AspyUtilities.IsLandScape())
     {
         return(myGlobals.G__RectWindowLandscape);
     }
     else
     {
         return(myGlobals.G__RectWindowPortait);
     }
 }