DeleteTagLocalizedPropertiesByName Method
- Last UpdatedAug 21, 2026
- 1 minute read
Use the DeleteTagLocalizedPropertyGroup() method to delete the localized properties of a tag.
'Declaration
Public Function DeleteTagLocalizedPropertiesByName( _
ByVal tagName As String, _
ByVal lcid As UInteger, _
ByVal propertyNames As StringCollection, _
ByVal deleteFromServer As Boolean, _
ByRef error As HistorianAccessError _
) As Boolean
'Usage
Dim instance As HistorianAccess
Dim tagName As String
Dim lcid As UInteger
Dim propertyNames As StringCollection
Dim deleteFromServer As Boolean
Dim error As HistorianAccessError
Dim value As Boolean
value = instance.DeleteTagLocalizedPropertiesByName(tagName, lcid, propertyNames, deleteFromServer, error)
public bool DeleteTagLocalizedPropertiesByName(
string tagName,
uint lcid,
StringCollection propertyNames,
bool deleteFromServer,
out HistorianAccessError error
)
public:
bool DeleteTagLocalizedPropertiesByName(
String^ tagName,
uint lcid,
StringCollection^ propertyNames,
bool deleteFromServer,
[Out] HistorianAccessError^ error
)
Parameters
- tagName
- Name of the tag for which localized properties to be deleted.
- lcid
- Lcid for which localized properties to be deleted.
- propertyNames
- Collection of property names to be deleted for a tag.
- deleteFromServer
- if true deletes from server, Store Forward(SF) and cache. If false deletes from SF and cache only. Default would be false.
- error
- Sets error in the HistorianAccessError object in case of failure, otherwise it will be null.