/// <summary> /// Sets the background image bitmap. /// </summary> /// <param name="imagePath">The local path to the bitmap.</param> /// <param name="mode">The fill mode <see cref="FillBitmapMode"/>.</param> /// <param name="Name">The name of the Fill Bitmap.</param> /// <returns> /// <c>true</c> if the background image could been set, otherwise <c>false</c> /// </returns> virtual public bool SetBackgroundBitmap(String imagePath, tud.mci.tangram.util.BitmapMode mode, String Name = "") { XBitmap bitmap = null; bitmap = OoUtils.GetGraphicFromUrl(imagePath) as XBitmap; return(SetBackgroundBitmap(bitmap, mode, Name)); }