OPC Studio User's Guide and Reference
Find Method (SizeFactors)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.Drawing Namespace > SizeFactors Class : Find Method
The name of the size factor.

The value of this parameter cannot be null (Nothing in Visual Basic).

The size factor found.
Find a size factor by its name.
Syntax
'Declaration
 
Public Shared Function Find( _
   ByVal name As String, _
   ByRef sizeFactor As SizeF _
) As Boolean
'Usage
 
Dim name As String
Dim sizeFactor As SizeF
Dim value As Boolean
 
value = SizeFactors.Find(name, sizeFactor)
public static bool Find( 
   string name,
   out SizeF sizeFactor
)
public:
static bool Find( 
   String^ name,
   [Out] SizeF sizeFactor
) 

Parameters

name
The name of the size factor.

The value of this parameter cannot be null (Nothing in Visual Basic).

sizeFactor
The size factor found.

Return Value

true iff the size factor has been found.
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