Aracılığıyla paylaş


Property nesnesi (dso)

Not

  Bu özellik Microsoft SQL Server'ın bir sonraki sürümünde kaldırılacaktır. Yeni geliştirme işlerinde bu özelliği kullanmayın ve bu özelliği kullanmakta olan uygulamaları mümkün olduğunca erken bir zamanda değiştirin.

Use Property nesnesi için kullanıcı tanımlı öğeleri kaydetmek için bir CustomPropertieskoleksiyon.Sizin tanımladığınız Property nesnelerine ve bunlar için CustomProperties koleksiyon herhangi bir karar destek nesneleri (dso) nesne dso nesnesi. ile ilişkilendirmek istediğiniz bilgileri saklamak içinHer biri için bir ad ve değer veri türü sağlar Property nesne.

Açıklamalar

The Property object has properties, but no collections or methods.The Property object is unlike other DSO objects in that it does not implement any of the interfaces, methods, properties, or collections of other DSO objects.

Örnekler

Yeni bir özel özellik oluşturma

Yeni bir özel özellik oluşturmak için şu kodu kullanın:

'Assume an object of ClassType clsDimension exists.
'Add a custom property.
Dim dsoProp As DSO.Property
Set dsoProp = dsoDim.CustomProperties.Add(55, "Age", vbInteger)

'Retrieve custom property values.
Dim dsoProp2 As DSO.Property
Set dsoProp2 = dsoDim.CustomProperties(1)
Debug.Print dsoProp2.Name, dsoProp2.Value