Skip to content
This repository was archived by the owner on Oct 11, 2023. It is now read-only.

c7d3bd58 a174 9099 b1a2 ff336196315e

haplokuon edited this page May 6, 2023 · 1 revision

TryGetValue Method

netDxf 3.0.0 Library

Gets the extended data associated with the specified application registry name.

Definition

Namespace: netDxf.Collections
Assembly: netDxf (in netDxf.dll) Version: 3.0.0

C#

public bool TryGetValue(
	string appId,
	out XData value
)

VB

Public Function TryGetValue ( 
	appId As String,
	<OutAttribute> ByRef value As XData
) As Boolean

C++

public:
virtual bool TryGetValue(
	String^ appId, 
	[OutAttribute] XData^% value
) sealed

F#

abstract TryGetValue : 
        appId : string * 
        value : XData byref -> bool 
override TryGetValue : 
        appId : string * 
        value : XData byref -> bool 

Parameters

  String
The application registry name whose value to get.
  XData
When this method returns, the extended data associated with the specified application registry name, if the application registry name is found; otherwise, null. This parameter is passed uninitialized.

Return Value

Boolean
True if the current dictionary contains an extended data with the specified application registry name; otherwise, false.

Implements

IDictionary(TKey, TValue).TryGetValue(TKey, TValue)

See Also

Reference

XDataDictionary Class
netDxf.Collections Namespace

Clone this wiki locally