Table of Contents

TSVGBlip.TSVGBlip Constructor

Overloads

TSVGBlip.TSVGBlip(Byte[], Boolean)

Creates a new TSVGBlip with only the blip data.

Syntax

Namespace: FlexCel.Core

public TSVGBlip(Byte[] aPictureData, Boolean CloneData)

Parameters

<-> Parameter Type Description
aPictureData Byte[] SVG image data. This is normally utf8-encoded.
CloneData Boolean If true, aPictureData will be cloned before storing it.
If false, aPictureData will be stored directly and it is your responsibility to not use aPictureData anymore.

See also

TSVGBlip.TSVGBlip(Byte[], String, String, Boolean)

Creates a new TSVGBlip.

Syntax

Namespace: FlexCel.Core

public TSVGBlip(Byte[] aPictureData, String aImageFileName, String aContentType, Boolean CloneData)

Parameters

<-> Parameter Type Description
aPictureData Byte[] SVG image data. This is normally utf8-encoded.
aImageFileName String Filename
aContentType String Type of image. This is a mime type, likely StandardMimeType.Svg
CloneData Boolean If true, aPictureData will be cloned before storing it.
If false, aPictureData will be stored directly and it is your responsibility to not use aPictureData anymore.

See also