Gets or sets the detail or property with the supplied name. If a property with the supplied name exists this is always returned in favour of any detail that might have the same name.

Namespace:  N2
Assembly:  N2 (in N2.dll) Version: 1.0.404.40299 (1.4.4)

Syntax

C#
public virtual Object this[
	string detailName
] { get; set; }
Visual Basic (Declaration)
Public Overridable Default Property Item ( _
	detailName As String _
) As Object
Visual C++
public:
virtual property Object^ default[String^ detailName] {
	Object^ get (String^ detailName);
	void set (String^ detailName, Object^ value);
}

Parameters

detailName
Type: System..::.String
The name of the propery or detail.

Return Value

The value of the property or detail. If now property exists null is returned.

See Also