Gets or sets a picture to display in the current field.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public Object Picture { get; set; }
Visual Basic
Public Property Picture As Object
	Get
	Set

Remarks

This property may be set to one of the following three kinds of objects:

  1. A regular .NET Image object.
  2. A string containing an image file name or URL.
  3. A string containing the name of an image field in the data source.

The first two options are used to create unbound images, such as logos. These images do not depend on the document data.

The third option is used to create bound images, such as product or employee pictures. These images are stored with the document data.

See Also