Gets or sets the value of a property with the specified name.

Namespace: BlueCieloECM.InnoCielo.Meridian.Scripting
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

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

Parameters

name
Type: System..::..String

Return Value

An array of all named properties if name is an empty string or nullNothingnullptra null reference (Nothing in Visual Basic).

Remarks

Assign nullNothingnullptra null reference (Nothing in Visual Basic) to remove the property.

See Also