Mettre une image en commentaire

De zBasic
Aller à : navigation, rechercher

Ajoute à la cellule B9, un commentaire avec l'image dude.png

Sub Main
	GlobalScope.BasicLibraries.loadLibrary ("zBasic")
	
	monImage = zImage.Importe("u:\temp\dude.png")
	zImage.Ancre(monImage,"B9")
	zImage.Annote(monImage)
	zImage.Supprime(monImage)
End Sub