Parameters
propertyName - The property name.
Returns
The collection
Syntax
| JavaScript |
|
Retrieve(propertyName)
|
Retrieves the object which matches the data values.
Example
| JavaScript |
// Retrieves the object which matches the data values.
Retrieve()
{
const columns = new LJCDataColumns();
let column = columns.Add("Name");
column = columns.Add("Sequence");
column = columns.Retrieve("Name");
const result = column.PropertyName;
// result:
// Name
}
|
Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.