Esempio n. 1
0
 /// <summary>
 /// Set a logo string on the image.
 /// </summary>
 /// <param name="showstring">time - time, date - date,ver - version</param>
 /// <param name="pos">0 – top left, 1 – top right, 2 – bottom left, 3 – bottom right</param>
 /// <returns></returns>
 public void SetLogo(string showstring, LogoPostions position)
 {
     RovioResponse response = this.Request("/SetLogo.cgi",
                                           new RequestItem("showstring", showstring),
                                           new RequestItem("pos", (int)position));
 }
Esempio n. 2
0
 /// <summary>
 /// Set a logo string on the image.
 /// </summary>
 /// <param name="showstring">time - time, date - date,ver - version</param>
 /// <param name="pos">0 – top left, 1 – top right, 2 – bottom left, 3 – bottom right</param>
 /// <returns></returns>
 public void SetLogo(string showstring, LogoPostions position)
 {
     RovioResponse response = this.Request("/SetLogo.cgi",
         new RequestItem("showstring", showstring),
         new RequestItem("pos", (int)position));
 }