WorksheetBase.SetBackgroundPicture, méthode
Définit le graphique d'arrière-plan pour la feuille de calcul.
Espace de noms : Microsoft.Office.Tools.Excel
Assembly : Microsoft.Office.Tools.Excel.v4.0.Utilities (dans Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Syntaxe
'Déclaration
Public Sub SetBackgroundPicture ( _
filename As String _
)
public void SetBackgroundPicture(
string filename
)
Paramètres
- filename
Type : System.String
Nom du fichier graphique.
Exemples
L'exemple de code suivant utilise la méthode SetBackgroundPicture pour affecter à l'image d'arrière-plan de la feuille de calcul la valeur d'un fichier nommé image1.jpg.
Cet exemple illustre une personnalisation au niveau du document.
Private Sub SetWorksheetPicture()
Dim backgroundFilePath As String = "C:\image1.jpg"
If System.IO.File.Exists(backgroundFilePath) Then
Me.SetBackgroundPicture("C:\image1.jpg")
Else
MsgBox("The file C:\image1.jpg does not exist.")
End If
End Sub
private void SetWorksheetPicture()
{
string backgroundFilePath = @"C:\image1.jpg";
if (System.IO.File.Exists(backgroundFilePath))
{
this.SetBackgroundPicture(@"C:\image1.jpg");
}
else
{
MessageBox.Show(@"The file C:\image1.jpg does not exist.");
}
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.