AttributeDefinitionDictionaryTryGetValue Method
|
Namespace:
DXFReaderNET.Collections
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public bool TryGetValue(
string tag,
out AttributeDefinition value
)
Public Function TryGetValue (
tag As String,
<OutAttribute> ByRef value As AttributeDefinition
) As Boolean
public:
virtual bool TryGetValue(
String^ tag,
[OutAttribute] AttributeDefinition^% value
) sealed
abstract TryGetValue :
tag : string *
value : AttributeDefinition byref -> bool
override TryGetValue :
tag : string *
value : AttributeDefinition byref -> bool
METHOD TryGetValue(
tag AS STRING,
value OUT AttributeDefinition
) AS LOGIC
Parameters
- tag
- Type: SystemString
The tag whose value to get. - value
- Type: DXFReaderNET.EntitiesAttributeDefinition
When this method returns, the attribute definition associated with the specified tag,
if the tag is found; otherwise, null. This parameter is passed uninitialized.
Return Value
Type:
BooleanTrue if the current dictionary contains an
attribute definition with the specified tag; otherwise, false.
Implements
IDictionaryTKey, TValueTryGetValue(TKey, TValue)See Also