OPC Studio User's Guide and Reference
RegularizedValue Property (ValueResult)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.OperationModel Namespace > ValueResult Class : RegularizedValue Property
Gets a regularized System.Object value that is a successful result of the operation.
Syntax
'Declaration
 
<BrowsableAttribute(False)>
<DataMemberAttribute()>
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>
<TypeConverterAttribute(System.ComponentModel.ExpandableObjectConverter)>
Public ReadOnly Property RegularizedValue As Object
'Usage
 
Dim instance As ValueResult
Dim value As Object
 
value = instance.RegularizedValue
[Browsable(false)]
[DataMember()]
[EditorBrowsable(EditorBrowsableState.Advanced)]
[TypeConverter(System.ComponentModel.ExpandableObjectConverter)]
public object RegularizedValue {get;}
[Browsable(false)]
[DataMember()]
[EditorBrowsable(EditorBrowsableState.Advanced)]
[TypeConverter(System.ComponentModel.ExpandableObjectConverter)]
public:
property Object^ RegularizedValue {
   Object^ get();
}

Property Value

This value of this property can be null (Nothing in Visual Basic).

The default value of this property is null.

Remarks

In a regularized value, arrays are always arrays of System.Object (transforms to VARIANT in COM). Regularized values are necessary for some COM tools, such as VBScript.

This method or property does not throw any exceptions, aside from execution exceptions such as System.Threading.ThreadAbortException or System.OutOfMemoryException.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also