Class PropertyDrawingContents
- Namespace
- combit.Reporting.Dom
- Assembly
- combit.ListLabel31.CrossPlatform.dll
Represents the content configuration for drawing objects (images, vector drawings, etc.). Supports multiple sourcing modes (formula, variable, embedded data) and file info/display sub objects.
public class PropertyDrawingContents : DomItem
- Inheritance
-
PropertyDrawingContents
- Inherited Members
Properties
Display
Gets the display settings (scaling, alignment, etc.).
[JsonInclude]
public PropertyDisplay Display { get; }
Property Value
Embedded
Gets or sets whether the drawing content is embedded (serialized inside the project).
public string Embedded { get; set; }
Property Value
EmbeddedContents
Gets or sets binary embedded drawing data (non formula property).
public string EmbeddedContents { get; set; }
Property Value
FileInfo
Gets the file info sub object for path, size and meta attributes.
[JsonInclude]
public PropertyDrawingFileInfo FileInfo { get; }
Property Value
Formula
Gets or sets the formula providing the drawing path or data reference.
public string Formula { get; set; }
Property Value
Mode
Gets or sets the sourcing mode (engine specific numeric constant) determining whether Formula, Variable or embedded data is used.
public string Mode { get; set; }
Property Value
SaveAsImage
Gets or sets whether the drawing should be saved as image (legacy property mapping on some platforms).
public string SaveAsImage { get; set; }
Property Value
Variable
Gets or sets the variable name providing drawing data.
public string Variable { get; set; }