ShapeBaseTarget Property |
Namespace: Aspose.Words.Drawing
The default value is an empty string.
// This creates a builder and also an empty document inside the builder DocumentBuilder builder = new DocumentBuilder(); Shape shape = builder.InsertImage(ImageDir + "Windows MetaFile.wmf"); shape.HRef = "http://www.aspose.com/Community/Forums/75/ShowForum.aspx"; shape.Target = "New Window"; shape.ScreenTip = "Aspose.Words Support Forums"; builder.Document.Save(ArtifactsDir + "Image.InsertImageWithHyperlink.doc");