'Declaration
<DataMemberAttribute()> <ValueRangeAttribute(1.401298E-45, 3.402823E+38)> Public Property UpdateRateBucketsPerDecade As Single
'Usage
Dim instance As DAParameterBucketingParameters Dim value As Single instance.UpdateRateBucketsPerDecade = value value = instance.UpdateRateBucketsPerDecade
[DataMember()] [ValueRange(1.401298E-45, 3.402823E+38)] public float UpdateRateBucketsPerDecade {get; set;}
[DataMember()] [ValueRange(1.401298E-45, 3.402823E+38)] public: property float UpdateRateBucketsPerDecade { float get(); void set ( float value); }
Property Value
The update rate values are divided into "buckets", using a logarithmic scale. This number specifies how many buckets will exist between values 100.0 - 1000.0, 10.0 - 100.0, 1.0 - 10.0, 0.1 - 1.0, and so forth, in both directions. Update rates requested will be adjusted so that the nearest bucket that fully satisfies the update rate requirement is used (i.e. the system may choose an update rate that is faster than requested, but not slower).Valid values of this property are in the range from 1.401298E-45 (Single.Epsilon)
to 3.402823E+38 (Single.MaxValue)
.
The default value of this property is 6
.