Click or drag to resize

TableObjectsTTryGetValue Method

imbVeles Framework: imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Gets the table object associated with the specified name.

Namespace:  netDxf.Collections
Assembly:  netDXF.Standard (in netDXF.Standard.dll) Version: 2.1.1
Syntax
C#
public bool TryGetValue(
	string name,
	out T item
)
Request Example View Source

Parameters

name
Type: SystemString
The name of the table object to get.
item
Type: T
When this method returns, contains the table object associated with the specified name, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.

Return Value

Type: Boolean
True if the table contains an element with the specified name; otherwise, false.
See Also