Adds or updates a tab's setting value

Namespace: DotNetNuke.Entities.Tabs
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
void UpdateTabSetting(
	int tabId,
	string settingName,
	string settingValue
)
Visual Basic
Sub UpdateTabSetting ( 
	tabId As Integer,
	settingName As String,
	settingValue As String
)

Parameters

tabId
Type: System..::..Int32
ID of the tab to update
settingName
Type: System..::..String
name of the setting property
settingValue
Type: System..::..String
value of the setting (String).

Remarks

empty SettingValue will remove the setting, if not preserveIfEmpty is true

See Also