Click or drag to resize

SymbolContainerTryGetSymbol(String, SymbolBase, Boolean) Method

Find a symbol by name.

Namespace: Demo3D.PLC.Comms.CIP
Assembly: PLC (in PLC.dll) Version: 19.00.00
Syntax
C#
public bool TryGetSymbol(
	string symbolName,
	out SymbolBase?? symbol,
	bool caseInsensitive = false
)

Parameters

symbolName  String
The symbol name to search for.
symbol  SymbolBase
The symbol if found (or null).
caseInsensitive  Boolean  (Optional)
True for a case insensitive search (defaults to false).

Return Value

Boolean
True if the symbol was found.
See Also