Last change
on this file since 12440 was
9580,
checked in by sforsten, 12 years ago
|
#1730:
- added SymbolicDataAnalysisExpressionExcelFormatter
- changed modifiers in SymbolicExpressionTreeChart of methods SaveImageAsBitmap and SaveImageAsEmf to public
- added menu item ExportSymbolicSolutionToExcelMenuItem to export a symbolic solution to an excel file
- added EPPlus-3.1.3 to ExtLibs
|
File size:
2.0 KB
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Drawing;
|
---|
6 | using System.Xml;
|
---|
7 |
|
---|
8 | namespace OfficeOpenXml.Style.Dxf
|
---|
9 | {
|
---|
10 | public class ExcelDxfFill : DxfStyleBase<ExcelDxfFill>
|
---|
11 | {
|
---|
12 | public ExcelDxfFill(ExcelStyles styles)
|
---|
13 | : base(styles)
|
---|
14 | {
|
---|
15 | PatternColor = new ExcelDxfColor(styles);
|
---|
16 | BackgroundColor = new ExcelDxfColor(styles);
|
---|
17 | }
|
---|
18 | public ExcelFillStyle? PatternType { get; set; }
|
---|
19 | /// <summary>
|
---|
20 | /// The color of the pattern
|
---|
21 | /// </summary>
|
---|
22 | public ExcelDxfColor PatternColor { get; internal set; }
|
---|
23 | /// <summary>
|
---|
24 | /// The background color
|
---|
25 | /// </summary>
|
---|
26 | public ExcelDxfColor BackgroundColor { get; internal set; }
|
---|
27 |
|
---|
28 | protected internal override string Id
|
---|
29 | {
|
---|
30 | get
|
---|
31 | {
|
---|
32 | return GetAsString(PatternType) + "|" + (PatternColor == null ? "" : PatternColor.Id) + "|" + (BackgroundColor == null ? "" : BackgroundColor.Id);
|
---|
33 | }
|
---|
34 | }
|
---|
35 | protected internal override void CreateNodes(XmlHelper helper, string path)
|
---|
36 | {
|
---|
37 | helper.CreateNode(path);
|
---|
38 | SetValueEnum(helper, path + "/d:patternFill/@patternType", PatternType);
|
---|
39 | SetValueColor(helper, path + "/d:patternFill/d:fgColor", PatternColor);
|
---|
40 | SetValueColor(helper, path + "/d:patternFill/d:bgColor", BackgroundColor);
|
---|
41 | }
|
---|
42 |
|
---|
43 | protected internal override bool HasValue
|
---|
44 | {
|
---|
45 | get
|
---|
46 | {
|
---|
47 | return PatternType != null ||
|
---|
48 | PatternColor.HasValue ||
|
---|
49 | BackgroundColor.HasValue;
|
---|
50 | }
|
---|
51 | }
|
---|
52 | protected internal override ExcelDxfFill Clone()
|
---|
53 | {
|
---|
54 | return new ExcelDxfFill(_styles) {PatternType=PatternType, PatternColor=PatternColor.Clone(), BackgroundColor=BackgroundColor.Clone()};
|
---|
55 | }
|
---|
56 | }
|
---|
57 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.