Exemple #1
0
 /**
  * <summary>
  *   Draws a GIF image at the specified position.
  * <para>
  *   The GIF image must have been previously
  *   uploaded to the device built-in memory. If you experience problems using an image
  *   file, check the device logs for any error message such as missing image file or bad
  *   image file format.
  * </para>
  * </summary>
  * <param name="x">
  *   the distance from left of layer to the left of the image, in pixels
  * </param>
  * <param name="y">
  *   the distance from top of layer to the top of the image, in pixels
  * </param>
  * <param name="imagename">
  *   the GIF file name
  * </param>
  * <returns>
  *   <c>0</c> if the call succeeds.
  * </returns>
  * <para>
  *   On failure, throws an exception or returns a negative error code.
  * </para>
  */
 public virtual int drawImage(int x, int y, string imagename)
 {
     return(_objptr.drawImage(x, y, imagename));
 }