[]
Gets or sets whether the insertion of hyperlinks is allowed on a protected worksheet.
This property applies when worksheet protection is enabled.
bool AllowInsertingHyperlinks { get; set; }
Property AllowInsertingHyperlinks As Boolean
worksheet.Protection = true;
IProtectionSettings protectionSettings = worksheet.ProtectionSettings;
protectionSettings.AllowInsertingHyperlinks = true;
bool allowInsertingHyperlinks = protectionSettings.AllowInsertingHyperlinks;