AddTagLocalizedProperties Method
- Last UpdatedAug 21, 2026
- 1 minute read
Use the AddTagLocalizedProperties() method to add tag localized properties to the server or local cache.
'Declaration
Public Function AddTagLocalizedProperties( _
ByVal tagLocalizedPropertyGroupList As TagLocalizedPropertyGroupList, _
ByRef error As HistorianAccessError _
) As Boolean
'Usage
Dim instance As HistorianAccess
Dim tagLocalizedPropertyGroupList As TagLocalizedPropertyGroupList
Dim error As HistorianAccessError
Dim value As Boolean
value = instance.AddTagLocalizedProperties(tagLocalizedPropertyGroupList, error)
public bool AddTagLocalizedProperties(
TagLocalizedPropertyGroupList tagLocalizedPropertyGroupList,
out HistorianAccessError error
)
public:
bool AddTagLocalizedProperties(
TagLocalizedPropertyGroupList^ tagLocalizedPropertyGroupList,
[Out] HistorianAccessError^ error
)
Parameters
- tagLocalizedPropertyGroupList
- This is the object of TagLocalizedPropertyGroupList. It contains tag localized properties to be stored on the server.
- error
- The object of HistorianAccessError. Stored with the error information, if any.
Return Value
Returns true if no error.
The AddTagLocalizedProperties() method adds tag localized properties to the server or local cache. When the server is available, the tag localized properties is stored in the server. If the server is not available, the tag localized properties is cached locally and synchronized once the server is available.
The AddTagLocalizedProperties() returns error information if any error occurs. Possible reasons for an error could be unknownClient, validationFailed, and a corresponding error code from the HCAL.
Make sure to call this method only after establishing a connection.