Compartilhar via


Propriedade WorkbookBase.UpdateLinks

Obtém ou define um valor que indica a configuração de uma pasta de trabalho para atualizar os links VELHOS inseridos.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v4.0.Utilities (em Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Sintaxe

'Declaração
Public Property UpdateLinks As XlUpdateLinks
public XlUpdateLinks UpdateLinks { get; set; }

Valor de propriedade

Tipo: Microsoft.Office.Interop.Excel.XlUpdateLinks
Um dos valores de XlUpdateLinks.

Exemplos

O exemplo de código usa a propriedade de UpdateLinks para exibir como links VELHOS inseridos são atualizados na pasta de trabalho.

Este exemplo destina-se a uma personalização no nível de 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;
    }
}

Segurança do .NET Framework

Consulte também

Referência

WorkbookBase Classe

Namespace Microsoft.Office.Tools.Excel