Condividi tramite


Proprietà WorkbookBase.UpdateLinks

Ottiene o imposta un valore che indica un'impostazione della cartella di lavoro per l'aggiornamento di collegamenti OLE incorporati.

Spazio dei nomi:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v4.0.Utilities (in Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Sintassi

'Dichiarazione
Public Property UpdateLinks As XlUpdateLinks
    Get
    Set
public XlUpdateLinks UpdateLinks { get; set; }

Valore proprietà

Tipo: Microsoft.Office.Interop.Excel.XlUpdateLinks
Uno dei valori di XlUpdateLinks.

Esempi

Nell'esempio di codice riportato di seguito viene utilizzata la proprietà UpdateLinks per visualizzare la modalità di aggiornamento dei collegamenti OLE incorporati nella cartella di lavoro.

Questo esempio è valido per una personalizzazione a livello di documento.

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;
    }
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

WorkbookBase Classe

Spazio dei nomi Microsoft.Office.Tools.Excel