ÖzelÖzellikler derlemesi
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.
The CustomProperties collection applies to all Decision Support Objects (DSO) objects and enables you to define unique properties for DSO objects.The CustomProperties collection contains Property objects that you define to store information you want to associate with a DSO object.Özel özellikler tanımlama hakkında daha fazla bilgi için bkz: Property nesnesini.
Erişim
Okuma/yazma
Açıklamalar
The CustomProperties collection implements its own methods and properties, which operate differently than those of other DSO collections.
Örnek
Aşağıdaki kod örneği ekleyin ve özel özellik nesneleri almak için kullanın:
' Assume the existence of an object of ClassType clsDimension.
' 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