Click or drag to resize

TableObjectsTTryGetValue Method

Gets the table object associated with the specified name.

Namespace:  DXFReaderNET.Collections
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax
public bool TryGetValue(
	string name,
	out T item
)

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