TRVBackgroundProperties.Attachment

<< Click to display table of contents >>

TRVBackgroundProperties.Attachment

Defines which area the background image fills.

type // defined in RVStyle unit
  TRVBackgroundAttachment = (

    rvbatContent, rvbatOwner

  );
 
property Attachment: 
  TRVBackgroundAttachment;

Value

Meaning

rvbatContent

The image fills the content area of the owner object. If the content scrolls, the background scrolls along with it.

rvbatOwner

The image fills the entire area of the owner object itself and does not scroll with its content.

This property is important when applied to the TRichView component itself. For tables, table cells, or printed page backgrounds, this property can be ignored. In those cases, the object's area and its content area coincide, so there is no practical difference between rvbatContent and rvbatOwner.

Default value

rvbatContent