[]
Gets or sets the style properties for the report body.
public Style Style { get; set; }
Type | Description |
---|---|
Style | A Style object representing the style settings for the body. |
The body is styled similarly to a ReportItem, except the Language property does not apply.
Body body = new Body();
body.Style = new Style { BackgroundColor = "LightGray" };