ITableEntry.TryGetValue(String, Object) Method

Definition

Get the data associated with the specified column (if this entry has data associated with that column).

public:
 bool TryGetValue(System::String ^ keyName, [Runtime::InteropServices::Out] System::Object ^ % content);
bool TryGetValue(std::wstring const & keyName, [Runtime::InteropServices::Out] winrt::Windows::Foundation::IInspectable const & & content);
public bool TryGetValue (string keyName, out object content);
abstract member TryGetValue : string * obj -> bool
Public Function TryGetValue (keyName As String, ByRef content As Object) As Boolean

Parameters

keyName
String

The key name.

content
Object

The content.

Returns

true if the entry has data associated with the column

Remarks

keyNames are compared using a case-sensitive comparison.

Applies to