Properties Collection

DTS Programming

DTS Programming

Properties Collection

The Properties collection contains Property objects exposing the attributes of a DTS object property.

Properties
Count Property Parent Property
Methods
Item Method
Remarks

Development environments, such as Microsoft® Visual Basic®, typically provide syntax completion and other development aids. Because the Property object exposes the attributes of object properties, it supports such automated developer assistance.

When using the Item method, the Properties collection supports member identification using either name or ordinal reference syntax. For example:

Set oProperty = oCustomTask.Properties("Name")

-or-

Set oProperty = oCustomTask.Properties(1)

Note  The Properties collection is implemented for automation controllers. DTS applications written in Microsoft Visual C++® and C have no direct access to the Property object.

See Also

Property Object

TransformServerProperties Property