Partager via


WorkbookBase.UpdateLinks, propriété

Obtient ou définit une valeur qui indique un paramètre du classeur pour la mise à jour des liaisons OLE incorporées.

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 Property UpdateLinks As XlUpdateLinks
public XlUpdateLinks UpdateLinks { get; set; }

Valeur de propriété

Type : Microsoft.Office.Interop.Excel.XlUpdateLinks
Une des valeurs de XlUpdateLinks.

Exemples

L'exemple de code suivant utilise la propriété UpdateLinks pour afficher la façon dont les liaisons OLE incorporées sont mises à jour dans le classeur.

Cet exemple illustre une personnalisation au niveau du document.

Private Sub DisplayLinkUpdateType()
    Select Case Me.UpdateLinks
        Case Excel.XlUpdateLinks.xlUpdateLinksAlways
            MsgBox("Links will always be updated.")
        Case Excel.XlUpdateLinks.xlUpdateLinksNever
            MsgBox("Links will never be updated.")
        Case Excel.XlUpdateLinks.xlUpdateLinksUserSetting
            MsgBox("Links will update according " & _
                "to the user settting.")
    End Select
End Sub
private void DisplayLinkUpdateType()
{
    switch (this.UpdateLinks)
    {
        case Excel.XlUpdateLinks.xlUpdateLinksAlways:
            MessageBox.Show("Links will always be updated.");
            break;
        case Excel.XlUpdateLinks.xlUpdateLinksNever:
            MessageBox.Show("Links will never be updated.");
            break;
        case Excel.XlUpdateLinks.xlUpdateLinksUserSetting:
            MessageBox.Show("Links will update according " +
            "to the user settting.");
            break;
    }
}

Sécurité .NET Framework

Voir aussi

Référence

WorkbookBase Classe

Microsoft.Office.Tools.Excel, espace de noms