Property Reference Q-R
R
RawValue Property (Option Object)
The raw numeric value of this option.
Syntax
object.RawValue[ = Double]
Parameters
None
ReadOnly Property (Archive Object)
Returns or sets the ReadOnly status of the specified archive. If you attempt to set the current archive to ReadOnly (the archive receiving newest data), an error is generated.
Syntaxobject.ReadOnly[ = Boolean]
ParametersNone
Example ' Set Archive To ReadOnly MyArchive.ReadOnly = True ' Reset Archive ReadOnly Status MyArchive.ReadOnly = False
ReadSecurityGroup Property (Tag Object)
RReturns or sets the name of the security group controlling the reading of data for the Tag. Changes to tag properties are not committed until you call the WriteRecordset method of the TagRecordset object.
Syntaxobject.ReadSecurityGroup[ = String]
ParametersNone
ReadSecurityGroup Property (TagCriteria Object)
Returns or sets the ReadOnly status of the specified archive. If you attempt to set the current archive to ReadOnly (the archive receiving newest data), an error is generated.
Syntaxobject.ReadSecurityGroup[ = String]
ParametersNone
Example With MyRecordset.Criteria .TagName = "*.F_CV" .ReadSecurityGroup = "Power Users" End With
ReadSecurityGroup Property (TagFields Object)
Determines whether the ReadSecurityGroup field should be returned in the TagRecordset query.
Syntaxobject.ReadSecurityGroup[ = Boolean]
ParametersNone
Example With MyRecordset.Fields .Clear .TagName = True .Description = True .ReadSecurityGroup = True .WriteSecurityGroup = True .AdministratorSecurityGroup = True End With
ReadSecurityGroupSet Property (TagCriteria Object)
A flag to indicate whether this property has been set or not.
Syntaxobject.ReadSecurityGroup[ = Boolean]
ParametersNone
ReadSecurityGroupUpdated Property (Tag Object)
A flag to indicate whether this property has been set or not.
Syntaxobject.ReadSecurityGroupUpdated[ = Boolean]
ParametersNone
RedundancyEnabled Property (Collector Object)
Returns or sets whether the collector is part of a redundant configuration.
Syntaxobject.RedundancyEnabled[ = Boolean]
ParametersNone
Running Property (Collector Object)
Returns or sets the running state of the specified Collector. Use this property to pause and resume collection without restarting and stopping the collector.
Syntaxobject.Running[ = Boolean]
ParametersNone
Example
' Resume the collector MyCollector.Running = True
' Pause the collector MyCollector.Running = False