Partager via


WorksheetBase.Scripts, propriété

Obtient la collection Microsoft.Office.Core.Scripts qui contient les objets Script représentant des blocs de script ou code dans la feuille de calcul lorsqu'elle est enregistrée en tant que page Web.

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 ReadOnly Property Scripts As Scripts
public Scripts Scripts { get; }

Valeur de propriété

Type : Microsoft.Office.Core.Scripts
La collection Microsoft.Office.Core.Scripts qui contient les objets Script représentant des blocs de script ou code dans la feuille de calcul lorsqu'elle est enregistrée en tant que page Web.

Exemples

L'exemple de code suivant utilise la propriété Scripts pour afficher le nombre de scripts dans la feuille de calcul active, ajouter un script à la feuille de calcul, puis afficher le nombre mis à jour de scripts.

Cet exemple illustre une personnalisation au niveau du document.

Private Sub AddScript()
    MsgBox("There are " & Me.Scripts.Count & " scripts in this worksheet.")

    Me.Scripts.Add(Me.Range("A1"), _
        Office.MsoScriptLocation.msoScriptLocationInBody, _
        Office.MsoScriptLanguage.msoScriptLanguageVisualBasic, _
        "ScriptOne", String.Empty, "MsgBox ""This is ScriptOne.""")

    MsgBox("There are " & Me.Scripts.Count & " scripts in this worksheet.")
End Sub
private void AddScript()
{
    MessageBox.Show("There are " + this.Scripts.Count +
        " scripts in this worksheet.");

    this.Scripts.Add(this.Range["A1"],
        Office.MsoScriptLocation.msoScriptLocationInBody,
        Office.MsoScriptLanguage.msoScriptLanguageVisualBasic,
        "ScriptOne", String.Empty, @"MsgBox ""This is ScriptOne.""");

    MessageBox.Show("There are " + this.Scripts.Count +
        " scripts in this worksheet.");
}

Sécurité .NET Framework

Voir aussi

Référence

WorksheetBase Classe

Microsoft.Office.Tools.Excel, espace de noms