Is This Content Helpful?
How can we make this better? Please provide as much detail as possible.
Contact our Support Team
The IPropertySet.GetAllProperties method returns each property's value. The index of 0 contains the precision as a string.
Code:
Dim props As Variant
Dim vals As Variant
pFeatureDataset.PropertySet.GetAllProperties props, vals
Note:
Since a FeatureDataset object is a type of Dataset object, and a PropertySet is associated with a Dataset, the PropertySet methods are available to the FeatureDataset.
Code:
MsgBox pFeatureDataset.Name & " " & props(0) & ": " & vals(0)