Gets or sets the name of the item property to which the parameter is "bound" for formatting purposes.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public string PropertyName { get; set; }
Visual Basic
Public Property PropertyName As String
	Get
	Set
Visual C++
public:
property String^ PropertyName {
	String^ get ();
	void set (String^ value);
}

Field Value

The name of the property.

Remarks

By default this value is the same as Name. However, when Name does not exactly match any property of your item type or item mapping, you must explicitly provide a property name. This property name is used to "bind" the parameter to an item property for formatting purposes.

See Also