[This is preliminary documentation and is subject to change.]

Updates an attribute parameter

Namespace:  OfficeClip.DBLayer.Metabase
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public int UpdateAttribute(
	MetaConstants..::.MetaEntity me,
	int externalId,
	int attributeId,
	string attributeName,
	int roleID,
	bool isPreferred,
	bool isRequired
)
Visual Basic (Declaration)
Public Function UpdateAttribute ( _
	me As MetaConstants..::.MetaEntity, _
	externalId As Integer, _
	attributeId As Integer, _
	attributeName As String, _
	roleID As Integer, _
	isPreferred As Boolean, _
	isRequired As Boolean _
) As Integer
Visual C++
public:
int UpdateAttribute(
	MetaConstants..::.MetaEntity me, 
	int externalId, 
	int attributeId, 
	String^ attributeName, 
	int roleID, 
	bool isPreferred, 
	bool isRequired
)

Parameters

me
Type: OfficeClip.BusinessLayer.Metabase..::.MetaConstants..::.MetaEntity
The meta entity
externalId
Type: System..::.Int32
The external id, usually the groupid
attributeId
Type: System..::.Int32
The unique id of the attribute
attributeName
Type: System..::.String
The name of the attribute
roleID
Type: System..::.Int32
The unique id of the role
isPreferred
Type: System..::.Boolean
If the attribute is preferred
isRequired
Type: System..::.Boolean
If the attribute is required

Return Value

See Also