This repository was archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 439
c7d3bd58 a174 9099 b1a2 ff336196315e
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Gets the extended data associated with the specified application registry name.
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 BooleanC++
public:
virtual bool TryGetValue(
String^ appId,
[OutAttribute] XData^% value
) sealedF#
abstract TryGetValue :
appId : string *
value : XData byref -> bool
override TryGetValue :
appId : string *
value : XData byref -> bool - 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.
Boolean
True if the current dictionary contains an extended data with the specified application registry name; otherwise, false.
IDictionary(TKey, TValue).TryGetValue(TKey, TValue)