Table of Contents

TPartialExportState.SaveCss Method

Overloads

TPartialExportState.SaveCss(TFlexCelWriter)

Use this method to output the CSS information on this object to the header of an HTML page. If you are using en external StyleSheet, this method will output a link to it, or if you are using an internal one it will output the actual classes. This overload will write the classes inside a <style> tag. To avoid writing the style tags, use the overload SaveCss(TFlexCelWriter, Boolean)

Syntax

Unit: FlexCel.Render

procedure TPartialExportState.SaveCss(const writer: TFlexCelWriter); overload;

Parameters

<-> Parameter Type Description
const writer TFlexCelWriter Writer where you are going to write the information.

See also

TPartialExportState.SaveCss(TFlexCelWriter, Boolean)

Use this method to output the CSS information on this object to the header of an HTML page. If you are using en external StyleSheet, this method will output a link to it, or if you are using an internal one it will output the actual classes.

Syntax

Unit: FlexCel.Render

procedure TPartialExportState.SaveCss(const writer: TFlexCelWriter; const includeStyleDefinition: Boolean); overload;

Parameters

<-> Parameter Type Description
const writer TFlexCelWriter Writer where you are going to write the information.
const includeStyleDefinition Boolean If true, the css classes will be inside a <style> tag. If false, only the actual classes will be written. This parameter has no effect if the StyleSheet is external.

See also