SaveLinkValues Property (Workbook)
In This Topic
Gets or sets a boolean value indicating whether externally referenced values will be saved with the workbook, enabling cells which refer to those values to be calculated without returning a #REF! error.
Syntax
'Declaration
Public Property SaveLinkValues As Boolean
'Usage
Dim instance As Workbook
Dim value As Boolean
instance.SaveLinkValues = value
value = instance.SaveLinkValues
public bool SaveLinkValues {get; set;}
Property Value
true
if externally referenced values will be saved with the workbook; otherwise,
false
.
See Also