BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Button1.Footer.Size = new System.Drawing.Size(200, 100); Button1.Footer.RenderHtml = true; Button1.Footer.Text = "<p>This text is normal.</p> " + "<p>My favorite <ins>color</ins> is red.</p>"; this.superToolTip1.SetToolTip(this.buttonAdv1, Button1); |
Button2.Footer.Size = new System.Drawing.Size(300, 200); Button2.Footer.RenderHtml = true; Button2.Footer.Text = "<!DOCTYPE html>" + "<html>" + "<head>" + "<style>" + "body { color: blue; }" + "h1 { color: green;}" + "</style>" + "</head>" + "<body>" +
"<h1>This is heading 1</h1>" + "<p>This is an ordinary paragraph. Notice that this text is blue. The default text color for a page is defined in the body selector.</p>" +
"</body>" + "</html>"; this.superToolTip1.SetToolTip(this.buttonAdv2, Button2); |