Creates a user-defined property with an integer data type.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0

Syntax

C#
public UDPInteger CreateUDP(
	AttributeTypeInfoInt udpTypeInfo,
	Guid guid
)
Visual Basic
Public Function CreateUDP ( _
	udpTypeInfo As AttributeTypeInfoInt, _
	guid As Guid _
) As UDPInteger
Visual C++
public:
UDPInteger^ CreateUDP(
	AttributeTypeInfoInt^ udpTypeInfo, 
	Guid guid
)

Parameters

udpTypeInfo
Type: Autodesk.Civil.DatabaseServices..::..AttributeTypeInfoInt
An AttributeTypeInfoInteger instance that defines the parameters for the new user-defined property.
guid
Type: System..::..Guid
the Guid for the user-defined property.

Remarks

When the guid parameter is Guid.Empty, a new GUID is automatically assigned to the user-defined property. Multiple UDPs can share the same GUID, however, the combination of the UDP name + GUID must be unique.

Exceptions

ExceptionCondition
System..::..ArgumentException Throw when the UDP identifier(name + GUID) is not unique.

See Also