OPC Studio User's Guide and Reference
TargetTypeName Property



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.ComponentModel.Referencing Namespace > ValueTarget Class : TargetTypeName Property
The name of the target type (optional).
Syntax
'Declaration
 
<BrowsableAttribute(False)>
<CanBeNullAttribute()>
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>
<XmlIgnoreAttribute()>
Public Property TargetTypeName As String
'Usage
 
Dim instance As ValueTarget
Dim value As String
 
instance.TargetTypeName = value
 
value = instance.TargetTypeName
[Browsable(false)]
[CanBeNull()]
[EditorBrowsable(EditorBrowsableState.Advanced)]
[XmlIgnore()]
public string TargetTypeName {get; set;}
[Browsable(false)]
[CanBeNull()]
[EditorBrowsable(EditorBrowsableState.Advanced)]
[XmlIgnore()]
public:
property String^ TargetTypeName {
   String^ get();
   void set (    String^ value);
}

Property Value

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

The default value of this property is null.

Remarks
Contains null when not specified. Specifying the target type name is only necessary when there is an ambiguity selecting a target member by name. This happens when multiple method overloads exist; specifying the target type name allows to select the intended one.
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