Defines the text displayed when the mouse pointer moves over the shape.
[Visual Basic]Public Property ScreenTip As
String [C#]public
string ScreenTip {get; set;}
Remarks
The default value is an empty string.
Example
Shows how to insert an image with a hyperlink.
[C#]
// This creates a builder and also an empty document inside the builder.
DocumentBuilder builder = new DocumentBuilder();
Shape shape = builder.InsertImage(MyDir + "Hammer.wmf");
shape.HRef = "http://www.aspose.com/Community/Forums/75/ShowForum.aspx";
shape.ScreenTip = "Aspose.Words Support Forums";
builder.Document.Save(MyDir + "Image.InsertImageWithHyperlink Out.doc");
[Visual Basic]
' This creates a builder and also an empty document inside the builder.
Dim builder As DocumentBuilder = New DocumentBuilder()
Dim shape As Shape = builder.InsertImage(MyDir & "Hammer.wmf")
shape.HRef = "http://www.aspose.com/Community/Forums/75/ShowForum.aspx"
shape.ScreenTip = "Aspose.Words Support Forums"
builder.Document.Save(MyDir & "Image.InsertImageWithHyperlink Out.doc")
See Also
ShapeBase Class | Aspose.Words.Drawing Namespace