客户字符串替换
This commit is contained in:
parent
a8271eafdf
commit
4f6ed39575
@ -7,8 +7,8 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Xceed.Document.NET;
|
||||
using Xceed.Drawing;
|
||||
using Xceed.Words.NET;
|
||||
using System.Drawing;
|
||||
|
||||
namespace GZ_LTHPilot_ORDER.Common
|
||||
{
|
||||
@ -16,8 +16,6 @@ namespace GZ_LTHPilot_ORDER.Common
|
||||
{
|
||||
public static void DolondWord(string templatePath, DataSet data, string outputPath, string FType)
|
||||
{
|
||||
List<string> List = new List<string>() { "CS", "ES" };
|
||||
|
||||
// 加载模板文档
|
||||
using (var document = DocX.Load(templatePath))
|
||||
{
|
||||
@ -32,127 +30,11 @@ namespace GZ_LTHPilot_ORDER.Common
|
||||
{
|
||||
|
||||
}
|
||||
else if (FType == "S")
|
||||
{
|
||||
// 假设模板中的表格是第一个表格
|
||||
var table = document.Tables[2];
|
||||
Row previousRow = (Row)table.Rows[1];
|
||||
//for (int i = table.Rows.Count - 4; i >= 1; i--) // 从最后一行开始删除,避免索引超出范围
|
||||
//{
|
||||
// table.Rows[i].Remove();
|
||||
//}
|
||||
table.Rows[1].Remove();
|
||||
var datatable2 = data.Tables[1];
|
||||
foreach (DataRow item in datatable2.Rows)
|
||||
{
|
||||
Row newRow = table.InsertRow(previousRow, table.Rows.Count - 1);
|
||||
foreach (var cell in newRow.Cells)
|
||||
{
|
||||
{
|
||||
// 注意:如果单元格中有多个段落或更复杂的结构,你可能需要遍历它们并分别复制样式
|
||||
Border Border = new Border() { Size = BorderSize.four, Color = Color.Black };
|
||||
cell.SetBorder(TableCellBorderType.Left, Border);
|
||||
cell.SetBorder(TableCellBorderType.Right, Border);
|
||||
cell.SetBorder(TableCellBorderType.Top, Border);
|
||||
cell.SetBorder(TableCellBorderType.Bottom, Border);
|
||||
}
|
||||
}
|
||||
for (int i = 0; i < datatable2.Columns.Count; i++)
|
||||
{
|
||||
newRow.Cells[i].ReplaceText("{" + i.ToString() + "}", Convert.ToString(item[i]));
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (FType == "W")
|
||||
else if (FType == "XNC")
|
||||
{
|
||||
// 假设模板中的表格是第一个表格
|
||||
var table = document.Tables[1];
|
||||
Row previousRow = (Row)table.Rows[1];
|
||||
//for (int i = table.Rows.Count - 4; i >= 1; i--) // 从最后一行开始删除,避免索引超出范围
|
||||
//{
|
||||
// table.Rows[i].Remove();
|
||||
//}
|
||||
table.Rows[1].Remove();
|
||||
var datatable2 = data.Tables[1];
|
||||
foreach (DataRow item in datatable2.Rows)
|
||||
{
|
||||
Row newRow = table.InsertRow(previousRow, table.Rows.Count - 2);
|
||||
foreach (var cell in newRow.Cells)
|
||||
{
|
||||
{
|
||||
// 注意:如果单元格中有多个段落或更复杂的结构,你可能需要遍历它们并分别复制样式
|
||||
Border Border = new Border() { Size = BorderSize.four, Color = Color.Black };
|
||||
cell.SetBorder(TableCellBorderType.Left, Border);
|
||||
cell.SetBorder(TableCellBorderType.Right, Border);
|
||||
cell.SetBorder(TableCellBorderType.Top, Border);
|
||||
cell.SetBorder(TableCellBorderType.Bottom, Border);
|
||||
}
|
||||
}
|
||||
for (int i = 0; i < datatable2.Columns.Count; i++)
|
||||
{
|
||||
newRow.Cells[i].ReplaceText("{" + i.ToString() + "}", Convert.ToString(item[i]));
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (FType == "SX-1" || FType == "SX-2")
|
||||
{
|
||||
#region 这里开始复制
|
||||
// 假设模板中的表格是第一个表格
|
||||
var table = document.Tables[2];
|
||||
//// 清空表格中的所有行(除了表头,如果有的话)
|
||||
//// 注意:这里假设第一行是表头,不删除
|
||||
Row previousRowNew = (Row)table.Rows[1];
|
||||
Row previousRowthreeNew = (Row)table.Rows[2];
|
||||
Row previousRowfourNew = (Row)table.Rows[3];
|
||||
for (int i = 3; i >= 1; i--)
|
||||
{
|
||||
table.Rows[i].Remove();
|
||||
}
|
||||
var datatable2 = data.Tables[2];
|
||||
|
||||
// 使用LINQ来获取去重后的FType字段
|
||||
var DistinctFTypes = datatable2.AsEnumerable()
|
||||
.Select(row => row.Field<string>("FType"))
|
||||
.Distinct()
|
||||
.ToList();
|
||||
int Index = DistinctFTypes.Count;
|
||||
foreach (var item in DistinctFTypes)
|
||||
{
|
||||
Row previousRow = previousRowNew;
|
||||
var previousRowthree = previousRowthreeNew;
|
||||
var previousRowfour = previousRowfourNew;
|
||||
//插入组合中具体的数据行
|
||||
var Rows = datatable2.AsEnumerable().Where(t => Convert.ToString(t["FType"]) == item).ToList();
|
||||
//插入一个组合
|
||||
#region
|
||||
Row newRowfour = table.InsertRow(previousRowfour, 1);
|
||||
newRowfour.Cells[1].ReplaceText("{9}", Convert.ToString(Rows[0][11]));
|
||||
foreach (var Row in Rows)
|
||||
{
|
||||
Row newRowthree = table.InsertRow(previousRowthree, 1);
|
||||
for (int i = 0; i < 9; i++)
|
||||
{
|
||||
newRowthree.Cells[i].ReplaceText("{" + i.ToString() + "}", Convert.ToString(Row[i]));
|
||||
}
|
||||
document.ReplaceText("{10}", Convert.ToString(Row[10]));
|
||||
}
|
||||
Row newRow = table.InsertRow(previousRow, 1);
|
||||
newRow.Cells[0].ReplaceText("{0}", string.Format("{0}、{1}", ConvertToChineseUppercase(Index), Convert.ToString(item)));
|
||||
#endregion
|
||||
Index--;
|
||||
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
else if (!List.Contains(FType) && FType != "HH" && FType != "TH")
|
||||
{
|
||||
// 假设模板中的表格是第一个表格
|
||||
var table = document.Tables[1];
|
||||
Row previousRow = (Row)table.Rows[1];
|
||||
//for (int i = table.Rows.Count - 4; i >= 1; i--) // 从最后一行开始删除,避免索引超出范围
|
||||
//{
|
||||
// table.Rows[i].Remove();
|
||||
//}
|
||||
table.Rows[1].Remove();
|
||||
var datatable2 = data.Tables[1];
|
||||
foreach (DataRow item in datatable2.Rows)
|
||||
@ -171,11 +53,12 @@ namespace GZ_LTHPilot_ORDER.Common
|
||||
}
|
||||
for (int i = 0; i < datatable2.Columns.Count; i++)
|
||||
{
|
||||
newRow.Cells[i].ReplaceText("{" + i.ToString() + "}", Convert.ToString(item[i]));
|
||||
newRow.Cells[i].ReplaceText("{" + i.ToString() + "}", Convert.ToString(item[i]).TrimEnd('0', '.'));
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (List.Contains(FType))
|
||||
//判断含施工费
|
||||
else if (FType == "XNSGCS" || FType == "XNTSCS")
|
||||
{
|
||||
#region 这里开始复制
|
||||
// 假设模板中的表格是第一个表格
|
||||
@ -207,84 +90,24 @@ namespace GZ_LTHPilot_ORDER.Common
|
||||
//插入一个组合
|
||||
#region
|
||||
Row newRowfour = table.InsertRow(previousRowfour, 1);
|
||||
newRowfour.Cells[1].ReplaceText("{9}", Convert.ToString(Rows[0][11]));
|
||||
newRowfour.Cells[1].ReplaceText("{9}", Convert.ToString(Rows[0][11]).TrimEnd('0', '.'));
|
||||
foreach (var Row in Rows)
|
||||
{
|
||||
Row newRowthree = table.InsertRow(previousRowthree, 1);
|
||||
for (int i = 0; i < 9; i++)
|
||||
{
|
||||
newRowthree.Cells[i].ReplaceText("{" + i.ToString() + "}", Convert.ToString(Row[i]));
|
||||
newRowthree.Cells[i].ReplaceText("{" + i.ToString() + "}", Convert.ToString(Row[i]).TrimEnd('0', '.'));
|
||||
}
|
||||
document.ReplaceText("{10}", Convert.ToString(Row[10]));
|
||||
document.ReplaceText("{10}", Convert.ToString(Row[10]).TrimEnd('0', '.'));
|
||||
}
|
||||
Row newRow = table.InsertRow(previousRow, 1);
|
||||
newRow.Cells[0].ReplaceText("{0}", string.Format("{0}、{1}", ConvertToChineseUppercase(Index), Convert.ToString(item)));
|
||||
newRow.Cells[0].ReplaceText("{0}", string.Format("{0}、{1}", ConvertToChineseUppercase(Index), Convert.ToString(item)).TrimEnd('0', '.'));
|
||||
#endregion
|
||||
Index--;
|
||||
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
else if (FType == "HH")
|
||||
{
|
||||
// 获取模板文档中的表格
|
||||
var table = document.Tables[1];
|
||||
Row previousRow = (Row)table.Rows[1];
|
||||
var roww = table.Rows;
|
||||
table.Rows[1].Remove();
|
||||
//获取存储过程的查询
|
||||
var datatable2 = data.Tables[3];
|
||||
foreach (DataRow item in datatable2.Rows)
|
||||
{
|
||||
int textn = table.Rows.Count;
|
||||
Row newRow = table.InsertRow(previousRow, table.Rows.Count - 3);
|
||||
foreach (var cell in newRow.Cells)
|
||||
{
|
||||
{
|
||||
// 注意:如果单元格中有多个段落或更复杂的结构,你可能需要遍历它们并分别复制样式
|
||||
Border Border = new Border() { Size = BorderSize.four, Color = Color.Black };
|
||||
cell.SetBorder(TableCellBorderType.Left, Border);
|
||||
cell.SetBorder(TableCellBorderType.Right, Border);
|
||||
cell.SetBorder(TableCellBorderType.Top, Border);
|
||||
cell.SetBorder(TableCellBorderType.Bottom, Border);
|
||||
}
|
||||
}
|
||||
for (int i = 0; i < datatable2.Columns.Count; i++)
|
||||
{
|
||||
newRow.Cells[i].ReplaceText("{" + i.ToString() + "}", Convert.ToString(item[i]));
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// 获取模板文档中的表格
|
||||
var table = document.Tables[1];
|
||||
Row previousRow = (Row)table.Rows[1];
|
||||
var roww = table.Rows;
|
||||
table.Rows[1].Remove();
|
||||
//获取存储过程的查询
|
||||
var datatable2 = data.Tables[4];
|
||||
foreach (DataRow item in datatable2.Rows)
|
||||
{
|
||||
int textn = table.Rows.Count;
|
||||
Row newRow = table.InsertRow(previousRow, table.Rows.Count - 3);
|
||||
foreach (var cell in newRow.Cells)
|
||||
{
|
||||
{
|
||||
// 注意:如果单元格中有多个段落或更复杂的结构,你可能需要遍历它们并分别复制样式
|
||||
Border Border = new Border() { Size = BorderSize.four, Color = Color.Black };
|
||||
cell.SetBorder(TableCellBorderType.Left, Border);
|
||||
cell.SetBorder(TableCellBorderType.Right, Border);
|
||||
cell.SetBorder(TableCellBorderType.Top, Border);
|
||||
cell.SetBorder(TableCellBorderType.Bottom, Border);
|
||||
}
|
||||
}
|
||||
for (int i = 0; i < datatable2.Columns.Count; i++)
|
||||
{
|
||||
newRow.Cells[i].ReplaceText("{" + i.ToString() + "}", Convert.ToString(item[i]));
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!Directory.Exists(Path.GetDirectoryName(outputPath)))
|
||||
{
|
||||
Directory.CreateDirectory(Path.GetDirectoryName(outputPath));
|
||||
|
@ -33,6 +33,75 @@
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="AForge.Video">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\AForge.Video.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="AForge.Video.DirectShow">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\AForge.Video.DirectShow.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Antlr3.Runtime">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\Antlr3.Runtime.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Aspose.Cells">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\Aspose.Cells.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="BouncyCastle.Crypto">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\BouncyCastle.Crypto.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Castle.Core">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\Castle.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.Data.v13.1">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\DevExpress.Data.v13.1.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.Printing.v13.1.Core">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\DevExpress.Printing.v13.1.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.Utils.v13.1">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\DevExpress.Utils.v13.1.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.XtraEditors.v13.1">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\DevExpress.XtraEditors.v13.1.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="DocumentFormat.OpenXml">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\DocumentFormat.OpenXml.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="DocumentFormat.OpenXml.Framework">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\DocumentFormat.OpenXml.Framework.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="FarPoint.CalcEngine">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\FarPoint.CalcEngine.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="FarPoint.Excel">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\FarPoint.Excel.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="FarPoint.Localization">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\FarPoint.Localization.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="FarPoint.PDF">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\FarPoint.PDF.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="FarPoint.PluginCalendar.WinForms">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\FarPoint.PluginCalendar.WinForms.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="FarPoint.Win">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\FarPoint.Win.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="FarPoint.Win.Chart">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\FarPoint.Win.Chart.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="FarPoint.Win.Spread">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\FarPoint.Win.Spread.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="ICSharpCode.SharpZipLib">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\ICSharpCode.SharpZipLib.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="IronPython">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\IronPython.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="JWT">
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\JWT.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="K3Cloud.WebApi.Client">
|
||||
<HintPath>..\..\派诺-斌哥\git\6、程序\GZ_KD_Parino\dll\K3Cloud.WebApi.Client.dll</HintPath>
|
||||
</Reference>
|
||||
@ -138,6 +207,7 @@
|
||||
<HintPath>packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
|
||||
</Reference>
|
||||
@ -155,19 +225,12 @@
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="Xceed.Document.NET, Version=4.0.25103.5784, Culture=neutral, PublicKeyToken=ba83ff368b7563c6, processorArchitecture=MSIL">
|
||||
<HintPath>packages\Xceed.Document.NET.4.0.25103.5784\lib\net40\Xceed.Document.NET.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xceed.Drawing.NET, Version=1.0.25103.5784, Culture=neutral, PublicKeyToken=ba83ff368b7563c6, processorArchitecture=MSIL">
|
||||
<HintPath>packages\Xceed.Drawing.NET.1.0.25103.5784\lib\net40\Xceed.Drawing.NET.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xceed.Pdf, Version=4.0.25103.5784, Culture=neutral, PublicKeyToken=ba83ff368b7563c6, processorArchitecture=MSIL">
|
||||
<HintPath>packages\Xceed.Pdf.4.0.25103.5784\lib\net40\Xceed.Pdf.dll</HintPath>
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\Xceed.Document.NET.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xceed.Words.NET, Version=4.0.25103.5784, Culture=neutral, PublicKeyToken=ba83ff368b7563c6, processorArchitecture=MSIL">
|
||||
<HintPath>packages\Xceed.Words.NET.4.0.25103.5784\lib\net40\Xceed.Words.NET.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xceed.Workbooks.NET, Version=2.0.25103.5784, Culture=neutral, PublicKeyToken=ba83ff368b7563c6, processorArchitecture=MSIL">
|
||||
<HintPath>packages\Xceed.Workbooks.NET.2.0.25103.5784\lib\net40\Xceed.Workbooks.NET.dll</HintPath>
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\派诺-裴豪\派诺功能\代码\Pilot_KD_Parino (2)\Pilot_KD_Parino\Pilot_KD_Parino\bin\Debug\Xceed.Words.NET.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@ -190,6 +253,9 @@
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<WCFMetadata Include="Connected Services\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<Import Project="packages\SkiaSharp.NativeAssets.macOS.2.88.8\build\net462\SkiaSharp.NativeAssets.macOS.targets" Condition="Exists('packages\SkiaSharp.NativeAssets.macOS.2.88.8\build\net462\SkiaSharp.NativeAssets.macOS.targets')" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
|
@ -2,6 +2,7 @@
|
||||
using Kingdee.BOS.Core;
|
||||
using Kingdee.BOS.Core.Bill.PlugIn;
|
||||
using Kingdee.BOS.Core.DynamicForm;
|
||||
using Kingdee.BOS.Core.DynamicForm.PlugIn;
|
||||
using Kingdee.BOS.Core.DynamicForm.PlugIn.Args;
|
||||
using Kingdee.BOS.Orm.DataEntity;
|
||||
using Kingdee.BOS.Util;
|
||||
@ -16,14 +17,15 @@ using System.Threading.Tasks;
|
||||
namespace GZ_LTHPilot_ORDER.SAL_QUOTATION
|
||||
{
|
||||
[Description("【表单插件】销售报价单-下载Word"), HotUpdate]
|
||||
public class DownLoadFile : AbstractBillPlugIn
|
||||
public class DownLoadFile : AbstractDynamicFormPlugIn
|
||||
{
|
||||
public override void AfterDoOperation(AfterDoOperationEventArgs e)
|
||||
|
||||
public override void BarItemClick(BarItemClickEventArgs e)
|
||||
{
|
||||
base.AfterDoOperation(e);
|
||||
//下载word
|
||||
if (e.Operation.Operation.Equals("VRYF_tbButton"))
|
||||
base.BarItemClick(e);
|
||||
if (e.BarItemKey.Equals("VRYF_tbButton"))
|
||||
{
|
||||
//this.View.ShowMessage("1233456");
|
||||
//获取时间戳
|
||||
var ts = DateTime.Now - new DateTime(1970, 1, 1, 0, 0, 0, 0);
|
||||
var _TimeSpan = Convert.ToInt64(ts.TotalSeconds).ToString();
|
||||
@ -41,6 +43,10 @@ namespace GZ_LTHPilot_ORDER.SAL_QUOTATION
|
||||
string FIsDebugging = this.View.Model.GetValue("FIsDebugging")?.ToString();
|
||||
//获取工程项目
|
||||
DynamicObject F_projectname = this.View.Model.GetValue("F_projectname") as DynamicObject;
|
||||
//获取是否不含施工,含调试费#
|
||||
String F_BHSGHTSF = this.View.Model.GetValue("F_BHSGHTSF")?.ToString();
|
||||
//判断是否含施工
|
||||
String F_HSG = this.View.Model.GetValue("F_HSG")?.ToString();
|
||||
|
||||
if (FCustId == null)
|
||||
{
|
||||
@ -60,6 +66,7 @@ namespace GZ_LTHPilot_ORDER.SAL_QUOTATION
|
||||
return;
|
||||
}
|
||||
string projectname = "";
|
||||
string FCustIdprojectname = "";
|
||||
if (oId != 438223)
|
||||
{
|
||||
projectname = F_projectname["NAME"]?.ToString();
|
||||
@ -68,63 +75,60 @@ namespace GZ_LTHPilot_ORDER.SAL_QUOTATION
|
||||
projectname = projectname.Replace("+", "➕");
|
||||
projectname = projectname.Replace("*", " ");
|
||||
projectname = projectname.Replace(":", ":");
|
||||
projectname = projectname.Replace("\"", "“");
|
||||
|
||||
FCustIdprojectname = FCustId["NAME"]?.ToString();
|
||||
//特殊符号平替解决方法:
|
||||
FCustIdprojectname = FCustIdprojectname.Replace("/", "/");
|
||||
FCustIdprojectname = FCustIdprojectname.Replace("+", "➕");
|
||||
FCustIdprojectname = FCustIdprojectname.Replace("*", " ");
|
||||
FCustIdprojectname = FCustIdprojectname.Replace(":", ":");
|
||||
FCustIdprojectname = FCustIdprojectname.Replace("\"", "“");
|
||||
}
|
||||
|
||||
string FPath = string.Format(@"D:\导出Word\{0}\{1}\{2}\{3}年\{4}月\{5}日\{6}.docx", this.Context.DataCenterName, "销售订单",
|
||||
string FPath = string.Format(@"D:\导出Word\{0}\{1}\{2}\{3}年\{4}月\{5}日\{6}.docx", this.Context.DataCenterName, "销售报价单",
|
||||
this.View.Model.DataObject["Billno"], DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, string.Format("{0}-{1}-{2}-{3}-{4}", FDATE.ToString("yyyy-MM-dd"), F_cocntractnumber
|
||||
, string.IsNullOrWhiteSpace(projectname) ? "" : projectname, FCustId == null ? "" : FCustId["NAME"], FSalerId == null ? "" : FSalerId["NAME"]));
|
||||
|
||||
//获取订单类型编码
|
||||
DynamicObject F_Ordercategory = this.View.Model.GetValue("F_Ordercategory") as DynamicObject;
|
||||
if (F_Ordercategory == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
string FOrdercategory = Convert.ToString(F_Ordercategory["FNumber"]);
|
||||
, string.IsNullOrWhiteSpace(projectname) ? "":projectname,FCustIdprojectname, FSalerId == null ? "" : FSalerId["NAME"]));
|
||||
|
||||
//获取金额
|
||||
string fBILLNO = this.View.Model.GetValue("FBILLNO").ToString();
|
||||
string sql = string.Format(@"/*dialect*/Select B.FBillAllAmount as 'FBillAllAmount' From T_SAL_QUOTATION A
|
||||
JOIN T_SAL_QUOTATIONFIN B on A.FID = B.FID Where A.FBILLNO = '{0}'", fBILLNO);
|
||||
//获取销售报价单的合同类型,根据报价单合同类型获取模版
|
||||
string sql = string.Format(@"/*dialect*/
|
||||
EXEC GetSAL_QUOTATIONHT_GZTH '{0}'
|
||||
", fBILLNO);
|
||||
var sqlList = DBUtils.ExecuteDynamicObject(Context, sql);
|
||||
var fAmount = Convert.ToDecimal(sqlList[0]["FBillAllAmount"]);
|
||||
//取值合同类型
|
||||
var F_Ordercategory = Convert.ToString(sqlList[0]["FNUMBER"]);
|
||||
String FOrdercategory = "";
|
||||
|
||||
if (fAmount >= 200000 && FOrdercategory == "P")
|
||||
//判断是哪个合同
|
||||
if (F_Ordercategory == "C")
|
||||
{
|
||||
FOrdercategory = "PP";
|
||||
FOrdercategory = "XNC";
|
||||
}
|
||||
|
||||
var ntess = FIsDebugging;
|
||||
|
||||
if (FOrdercategory == "SX" && FIsDebugging == "1")
|
||||
if(F_Ordercategory == "CS")
|
||||
{
|
||||
FOrdercategory = "SX-1";
|
||||
}
|
||||
|
||||
if (FOrdercategory == "SX" && FIsDebugging == "0")
|
||||
{
|
||||
FOrdercategory = "SX-2";
|
||||
}
|
||||
|
||||
//判断退货/换货
|
||||
var splitList = F_cocntractnumber.Split('-');
|
||||
if (splitList.Count() > 1)
|
||||
{
|
||||
if (splitList[1].ToString().Contains("TH"))
|
||||
//判断含调试费
|
||||
if (F_BHSGHTSF == "True")
|
||||
{
|
||||
FOrdercategory = "TH";
|
||||
FOrdercategory = "XNSGCS";
|
||||
}
|
||||
else
|
||||
//判断含施工,不含调试费
|
||||
else if (F_HSG == "True")
|
||||
{
|
||||
FOrdercategory = "HH";
|
||||
FOrdercategory = "XNTSCS";
|
||||
}
|
||||
}
|
||||
if (F_Ordercategory == "CW") {
|
||||
//判断是否按服务事件报价
|
||||
|
||||
}
|
||||
|
||||
//获取模板地址
|
||||
var TempModelPath = SqlManage.SqlManage.GetTempModelPath(this.Context, FOrdercategory);
|
||||
if (TempModelPath == null)
|
||||
if (TempModelPath.Count == 0)
|
||||
{
|
||||
this.View.ShowErrMessage("找不到对应的word模板");
|
||||
this.View.ShowErrMessage("找不到对应的word模板,CS模版需勾选是否不含施工或是否含施工复选框。");
|
||||
return;
|
||||
}
|
||||
//获取内容
|
||||
@ -155,12 +159,12 @@ namespace GZ_LTHPilot_ORDER.SAL_QUOTATION
|
||||
this.View.ShowForm(showParameter);
|
||||
}
|
||||
}
|
||||
string opt = e.Operation.Operation;
|
||||
//string opt = e.Operation.Operation;
|
||||
|
||||
if (opt == "Save" && e.OperationResult.IsSuccess)
|
||||
{
|
||||
this.View.Refresh();
|
||||
}
|
||||
//if (opt == "Save" && e.OperationResult.IsSuccess)
|
||||
//{
|
||||
// this.View.Refresh();
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -236,7 +236,7 @@ namespace GZ_LTHPilot_ORDER.SqlManage
|
||||
{
|
||||
//定义SQL,调用物料视图
|
||||
string sql = string.Format(@"/*dialect*/
|
||||
exec GetTempModelData '{0}','{1}' ", FID, FType);
|
||||
exec GetTempModelData_XSBJD_GZTH '{0}','{1}' ", FID, FType);
|
||||
//执行SQL
|
||||
return DBServiceHelper.ExecuteDataSet(ctx, sql);
|
||||
}
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,911 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Xceed.Drawing.NET</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Xceed.Drawing.DashStyle">
|
||||
<summary>Specifies the style of the dashed lines drawn with a Pen object.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.DashStyle.Solid">
|
||||
<summary>The line will be solid.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.DashStyle.Dash">
|
||||
<summary>The line will be made of a series of dashes.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.DashStyle.Dot">
|
||||
<summary>The line will be made of a series of dots.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.DashStyle.DashDot">
|
||||
<summary>The line will be made of a repeating dash-dot pattern.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.DashStyle.DashDotDot">
|
||||
<summary>The line will be made of a repeating dash-dot-dot pattern.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.DashStyle.Custom">
|
||||
<summary>The line will use a custom style.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Drawing.FontStyle">
|
||||
<summary>Specifies the style that will be applied to the text.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.FontStyle.Regular">
|
||||
<summary>The text will not be stylized.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.FontStyle.Bold">
|
||||
<summary>The text will be in bold.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.FontStyle.Italic">
|
||||
<summary>
|
||||
<para>The text will be in italic.</para>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.FontStyle.Underline">
|
||||
<summary>A line will be added below the text.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.FontStyle.Strikeout">
|
||||
<summary>A line will go through the text.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Drawing.Color">
|
||||
<summary>Encapsulates a <em>SkiaSharp.SKColor</em> in .NET5+ or a <em>System.Drawing.Color</em> in .NET Framework.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Drawing.Point">
|
||||
<summary>Encapsulates a <em>SkiaSharp.SKPoint</em> in .NET5+ or a <em>System.Drawing.Point</em> in NET Framework.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Drawing.PointF">
|
||||
<summary>Encapsulates a <em>SkiaSharp.SKPoint</em> in .NET5+ or a <em>System.Drawing.PointF</em> in .NET Framework.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Drawing.RectangleF">
|
||||
<summary>Encapsulates a <em>SkiaSharp.SKRect</em> in .NET5+ or a <em>System.Drawing.RectangleF</em> in .NET Framework.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Color.#ctor(System.Drawing.Color)">
|
||||
<summary>Creates a new Color object from a color.</summary>
|
||||
<param name="color">The color that will be encapsulated.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Color.GetBrightness">
|
||||
<summary>Returns the Color's <em>brightness.</em></summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Color.GetHue">
|
||||
<summary>Returns the Color's <em>hue</em>.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Color.GetSaturation">
|
||||
<summary>Returns the Color's <em>saturation</em>.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Color.IsKnownColor(System.String)">
|
||||
<summary>Will return <em>true</em> if the <em>value</em> string corresponds to one of the <em>SKColors</em> in .NET5+ or one of the <em>System.Drawing.KnownColor</em>
|
||||
in .NET Framework.</summary>
|
||||
<param name="value">The string that will be evaluated.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Color.Parse">
|
||||
<summary>Creates a Color from specific values.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Color.ToArgb">
|
||||
<summary>Returns the Color's 32-bit <em>ARGB</em> value.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Color.Parse(System.String)">
|
||||
<summary>Creates a Color from the <em>stringColor</em> parameter.</summary>
|
||||
<param name="stringColor">The string that will be used to create the Color.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Color.Parse(System.Int32,System.Int32,System.Int32)">
|
||||
<summary>Creates a Color from 8-bit color values (<em>Red</em>, <em>Green</em> & <em>Blue</em>).</summary>
|
||||
<param name="r">The <em>Red</em> component's value. Valid values go from 0 to 255.</param>
|
||||
<param name="g">The <em>Green</em> component's value. Valid values go from 0 to 255.</param>
|
||||
<param name="b">The <em>Blue</em> component's value. Valid values go from 0 to 255.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Color.Parse(System.Int32,System.Int32,System.Int32,System.Int32)">
|
||||
<summary>Creates a Color from the four <em>ARGB</em> components' values (<em>Alpha</em>, <em>Red</em>,
|
||||
<em>Green</em> & <em>Blue</em>).</summary>
|
||||
<param name="a">The <em>Alpha</em> component's value. Valid values go from 0 to 255.</param>
|
||||
<param name="r">The <em>Red</em> component's value. Valid values go from 0 to 255.</param>
|
||||
<param name="g">The <em>Green</em> component's value. Valid values go from 0 to 255.</param>
|
||||
<param name="b">The <em>Blue</em> component's value. Valid values go from 0 to 255.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Color.Parse(System.Int32,Xceed.Drawing.Color)">
|
||||
<summary>Creates a Color based on an existing <see cref="Xceed.Drawing.NET~Xceed.Drawing.Color.html">Color</see>
|
||||
object, but with a new <em>alpha</em> value.</summary>
|
||||
<param name="a">The new Color's <em>Alpha</em> value. Valid values go from 0 to 255.</param>
|
||||
<param name="color">The Color object on which the new <see cref="Xceed.Drawing.NET~Xceed.Drawing.Color.html">Color</see> will
|
||||
be based.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Color.Parse(System.Int32)">
|
||||
<summary>Creates a Color from a 32-bit <em>ARGB</em> value.</summary>
|
||||
<param name="argb">Specifies the new Color's 32-bit <em>ARGB</em> value.</param>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Color.A">
|
||||
<summary>Get's the Color's <em>Alpha</em> byte.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Color.B">
|
||||
<summary>Gets the Color's <em>Blue</em> byte.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Color.G">
|
||||
<summary>Get's the Color's <em>Green</em> byte.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Color.IsEmpty">
|
||||
<summary>Gets if the Color is empty.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Color.Name">
|
||||
<summary>Gets the Color's name.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Color.R">
|
||||
<summary>Gets the Color's <em>Red</em> byte.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Color.Value">
|
||||
<summary>Gets the value of the Color object.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.ActiveBorder">
|
||||
<summary>Creates a Color object using the <em>active border</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.ActiveCaption">
|
||||
<summary>Creates a Color object using the <em>active caption</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.ActiveCaptionText">
|
||||
<summary>Creates a Color object using the <em>active caption text</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.AliceBlue">
|
||||
<summary>Creates a Color object using the <em>alice blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.AntiqueWhite">
|
||||
<summary>Creates a Color object using the <em>antique white</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.AppWorkspace">
|
||||
<summary>Creates a Color object using the <em>app workspace</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Aqua">
|
||||
<summary>Creates a Color object using the <em>aqua</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Aquamarine">
|
||||
<summary>Creates a Color object using the <em>aquamarine</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Azure">
|
||||
<summary>Creates a Color object using the <em>azure</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Beige">
|
||||
<summary>Creates a Color object using the <em>beige</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Bisque">
|
||||
<summary>Creates a Color object using the <em>bisque</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Black">
|
||||
<summary>Creates a Color object using the <em>black</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.BlanchedAlmond">
|
||||
<summary>Creates a Color object using the <em>blanched almond</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Blue">
|
||||
<summary>Creates a Color object using the <em>blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.BlueViolet">
|
||||
<summary>Creates a Color object using the <em>blue violet</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Brown">
|
||||
<summary>Creates a Color object using the <em>brown</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.BurlyWood">
|
||||
<summary>Creates a Color object using the <em>burly wood</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.ButtonFace">
|
||||
<summary>Creates a Color object using the <em>button face</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.ButtonHighlight">
|
||||
<summary>Creates a Color object using the <em>button highlight</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.ButtonShadow">
|
||||
<summary>Creates a Color object using the <em>button shadow</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.CadetBlue">
|
||||
<summary>Creates a Color object using the <em>cadet blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Chartreuse">
|
||||
<summary>Creates a Color object using the <em>chartreuse</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Chocolate">
|
||||
<summary>Creates a Color object using the <em>chocolate</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.ControlLight">
|
||||
<summary>Creates a Color object using the <em>control light</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.ControlText">
|
||||
<summary>Creates a Color object using the <em>control text</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Coral">
|
||||
<summary>Creates a Color object using the <em>coral</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.CornflowerBlue">
|
||||
<summary>Creates a Color object using the <em>cornflower blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Cornsilk">
|
||||
<summary>Creates a Color object using the <em>cornsilk</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Crimson">
|
||||
<summary>Creates a Color object using the <em>crimson</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Cyan">
|
||||
<summary>Creates a Color object using the <em>cyan</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkBlue">
|
||||
<summary>Creates a Color object using the <em>dark blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkCyan">
|
||||
<summary>Creates a Color object using the <em>dark cyan</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkGoldenrod">
|
||||
<summary>Creates a Color object using the <em>dark goldenrod</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkGray">
|
||||
<summary>Creates a Color object using the <em>dark gray</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkGreen">
|
||||
<summary>Creates a Color object using the <em>dark green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkKhaki">
|
||||
<summary>Creates a Color object using the <em>dark khaki</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkMagenta">
|
||||
<summary>Creates a Color object using the <em>dark magenta</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkOliveGreen">
|
||||
<summary>Creates a Color object using the <em>dark olive green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkOrange">
|
||||
<summary>Creates a Color object using the <em>dark orange</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkOrchid">
|
||||
<summary>Creates a Color object using the <em>dark orchid</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkRed">
|
||||
<summary>Creates a Color object using the <em>dark red</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkSalmon">
|
||||
<summary>Creates a Color object using the <em>dark salmon</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkSeaGreen">
|
||||
<summary>Creates a Color object using the <em>dark sea green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkSlateBlue">
|
||||
<summary>Creates a Color object using the <em>dark slate blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkSlateGray">
|
||||
<summary>Creates a Color object using the <em>dark slate gray</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkTurquoise">
|
||||
<summary>Creates a Color object using the <em>dark turquoise</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DarkViolet">
|
||||
<summary>Creates a Color object using the <em>dark violet</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DeepPink">
|
||||
<summary>Creates a Color object using the <em>deep pink</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DeepSkyBlue">
|
||||
<summary>Creates a Color object using the <em>deep sky blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Desktop">
|
||||
<summary>Creates a Color object using the <em>desktop</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DimGray">
|
||||
<summary>Creates a Color object using the <em>dim gray</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.DodgerBlue">
|
||||
<summary>Creates a Color object using the <em>dodger blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Empty">
|
||||
<summary>Creates a Color object using the <em>empty</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Firebrick">
|
||||
<summary>Creates a Color object using the <em>firebrick</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.FloralWhite">
|
||||
<summary>Creates a Color object using the <em>floral white</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.ForestGreen">
|
||||
<summary>Creates a Color object using the <em>forest green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Fuchsia">
|
||||
<summary>Creates a Color object using the <em>fuchsia</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Gainsboro">
|
||||
<summary>Creates a Color object using the <em>gainsboro</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.GhostWhite">
|
||||
<summary>Creates a Color object using the <em>ghost white</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Gold">
|
||||
<summary>Creates a Color object using the <em>gold</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Goldenrod">
|
||||
<summary>Creates a Color object using the <em>goldenrod</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.GradientActiveCaption">
|
||||
<summary>Creates a Color object using the <em>gradient active caption</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.GradientInactiveCaption">
|
||||
<summary>Creates a Color object using the <em>gradient inactive caption</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Gray">
|
||||
<summary>Creates a Color object using the <em>gray</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.GrayText">
|
||||
<summary>Creates a Color object using the <em>gray text</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Green">
|
||||
<summary>Creates a Color object using the <em>green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.GreenYellow">
|
||||
<summary>Creates a Color object using the <em>green yellow</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Highlight">
|
||||
<summary>Creates a Color object using the <em>highlight</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.HighlightText">
|
||||
<summary>Creates a Color object using the <em>highlight text</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Honeydew">
|
||||
<summary>Creates a Color object using the <em>honeydew</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.HotPink">
|
||||
<summary>Creates a Color object using the <em>hot pink</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.HotTrack">
|
||||
<summary>Creates a Color object using the <em>hot track</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.InactiveBorder">
|
||||
<summary>Creates a Color object using the <em>inactive border</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.InactiveCaption">
|
||||
<summary>Creates a Color object using the <em>inactive caption</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.InactiveCaptionText">
|
||||
<summary>Creates a Color object using the <em>inactive caption text</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.IndianRed">
|
||||
<summary>Creates a Color object using the <em>indian red</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Indigo">
|
||||
<summary>Creates a Color object using the <em>indigo</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Info">
|
||||
<summary>Creates a Color object using the <em>info</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.InfoText">
|
||||
<summary>Creates a Color object using the <em>info text</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Ivory">
|
||||
<summary>Creates a Color object using the <em>ivory</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Khaki">
|
||||
<summary>Creates a Color object using the <em>khaki</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Lavender">
|
||||
<summary>Creates a Color object using the <em>lavender</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LavenderBlush">
|
||||
<summary>Creates a Color object using the <em>lavender blush</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LawnGreen">
|
||||
<summary>Creates a Color object using the <em>lawn green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LemonChiffon">
|
||||
<summary>Creates a Color object using the <em>lemon chiffon</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LightBlue">
|
||||
<summary>Creates a Color object using the <em>light blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LightCoral">
|
||||
<summary>Creates a Color object using the <em>light coral</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LightCyan">
|
||||
<summary>Creates a Color object using the <em>light cyan</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LightGoldenrodYellow">
|
||||
<summary>Creates a Color object using the <em>light goldenrod yellow</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LightGray">
|
||||
<summary>Creates a Color object using the <em>light gray</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LightGreen">
|
||||
<summary>Creates a Color object using the <em>light green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LightPink">
|
||||
<summary>Creates a Color object using the <em>light pink</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LightSalmon">
|
||||
<summary>Creates a Color object using the <em>light salmon</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LightSeaGreen">
|
||||
<summary>Creates a Color object using the <em>light sea green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LightSkyBlue">
|
||||
<summary>Creates a Color object using the <em>light sky blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LightSlateGray">
|
||||
<summary>Creates a Color object using the <em>light slate gray</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LightSteelBlue">
|
||||
<summary>Creates a Color object using the <em>light steel blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LightYellow">
|
||||
<summary>Creates a Color object using the <em>light yellow</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Lime">
|
||||
<summary>Creates a Color object using the <em>lime</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.LimeGreen">
|
||||
<summary>Creates a Color object using the <em>lime green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Linen">
|
||||
<summary>Creates a Color object using the <em>linen</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Magenta">
|
||||
<summary>Creates a Color object using the <em>magenta</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Maroon">
|
||||
<summary>Creates a Color object using the <em>maroon</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MediumAquamarine">
|
||||
<summary>Creates a Color object using the <em>medium aquamarine</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MediumBlue">
|
||||
<summary>Creates a Color object using the <em>medium blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MediumOrchid">
|
||||
<summary>Creates a Color object using the <em>medium orchid</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MediumPurple">
|
||||
<summary>Creates a Color object using the <em>medium purple</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MediumSeaGreen">
|
||||
<summary>Creates a Color object using the <em>medium sea green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MediumSlateBlue">
|
||||
<summary>Creates a Color object using the <em>medium slate blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MediumSpringGreen">
|
||||
<summary>Creates a Color object using the <em>medium spring green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MediumTurquoise">
|
||||
<summary>Creates a Color object using the <em>medium turquoise</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MediumVioletRed">
|
||||
<summary>Creates a Color object using the <em>medium violet red</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Menu">
|
||||
<summary>Creates a Color object using the <em>menu</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MenuBar">
|
||||
<summary>Creates a Color object using the <em>menu bar</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MenuHighlight">
|
||||
<summary>Creates a Color object using the <em>menu highlight</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MenuText">
|
||||
<summary>Creates a Color object using the <em>menu text</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MidnightBlue">
|
||||
<summary>Creates a Color object using the <em>midnight blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MintCream">
|
||||
<summary>Creates a Color object using the <em>mint cream</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.MistyRose">
|
||||
<summary>Creates a Color object using the <em>misty rose</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Moccasin">
|
||||
<summary>Creates a Color object using the <em>moccasin</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.NavajoWhite">
|
||||
<summary>Creates a Color object using the <em>navajo white</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Navy">
|
||||
<summary>Creates a Color object using the <em>navy</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.OldLace">
|
||||
<summary>Creates a Color object using the <em>old lace</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Olive">
|
||||
<summary>Creates a Color object using the <em>olive</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.OliveDrab">
|
||||
<summary>Creates a Color object using the <em>olive drab</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Orange">
|
||||
<summary>Creates a Color object using the <em>orange</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.OrangeRed">
|
||||
<summary>Creates a Color object using the <em>orange red</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Orchid">
|
||||
<summary>Creates a Color object using the <em>orchid</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.PaleGoldenrod">
|
||||
<summary>Creates a Color object using the <em>pale goldenrod</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.PaleGreen">
|
||||
<summary>Creates a Color object using the <em>pale green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.PaleTurquoise">
|
||||
<summary>Creates a Color object using the <em>pale turquoise</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.PaleVioletRed">
|
||||
<summary>Creates a Color object using the <em>pale violet red</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.PapayaWhip">
|
||||
<summary>Creates a Color object using the <em>papaya whip</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.PeachPuff">
|
||||
<summary>Creates a Color object using the <em>peach puff</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Peru">
|
||||
<summary>Creates a Color object using the <em>peru</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Pink">
|
||||
<summary>Creates a Color object using the <em>pink</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Plum">
|
||||
<summary>Creates a Color object using the <em>plum</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.PowderBlue">
|
||||
<summary>Creates a Color object using the <em>powder blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Purple">
|
||||
<summary>Creates a Color object using the <em>purple</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Red">
|
||||
<summary>Creates a Color object using the <em>red</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.RosyBrown">
|
||||
<summary>Creates a Color object using the <em>rosy brown</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.RoyalBlue">
|
||||
<summary>Creates a Color object using the <em>royal blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.SaddleBrown">
|
||||
<summary>Creates a Color object using the <em>saddle brown</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Salmon">
|
||||
<summary>Creates a Color object using the <em>salmon</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.SandyBrown">
|
||||
<summary>Creates a Color object using the <em>sandy brown</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.ScrollBar">
|
||||
<summary>Creates a Color object using the <em>scroll bar</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.SeaGreen">
|
||||
<summary>Creates a Color object using the <em>sea green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.SeaShell">
|
||||
<summary>Creates a Color object using the <em>sea shell</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Sienna">
|
||||
<summary>Creates a Color object using the <em>sienna</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Silver">
|
||||
<summary>Creates a Color object using the <em>silver</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.SkyBlue">
|
||||
<summary>Creates a Color object using the <em>sky blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.SlateBlue">
|
||||
<summary>Creates a Color object using the <em>slate blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.SlateGray">
|
||||
<summary>Creates a Color object using the <em>slate gray</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Snow">
|
||||
<summary>Creates a Color object using the <em>snow</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.SpringGreen">
|
||||
<summary>Creates a Color object using the <em>spring green</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.SteelBlue">
|
||||
<summary>Creates a Color object using the <em>steel blue</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Tan">
|
||||
<summary>Creates a Color object using the <em>tan</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Teal">
|
||||
<summary>Creates a Color object using the <em>teal</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Thistle">
|
||||
<summary>Creates a Color object using the <em>thistle</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Tomato">
|
||||
<summary>Creates a Color object using the <em>tomato</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Transparent">
|
||||
<summary>Creates a Color object using the <em>transparent</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Turquoise">
|
||||
<summary>Creates a Color object using the <em>turquoise</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Violet">
|
||||
<summary>Creates a Color object using the <em>violet</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Wheat">
|
||||
<summary>Creates a Color object using the <em>wheat</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.White">
|
||||
<summary>Creates a Color object using the <em>white</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.WhiteSmoke">
|
||||
<summary>Creates a Color object using the <em>white smoke</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Window">
|
||||
<summary>Creates a Color object using the <em>window</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.WindowFrame">
|
||||
<summary>Creates a Color object using the <em>window frame</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.WindowText">
|
||||
<summary>Creates a Color object using the <em>window text</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.Yellow">
|
||||
<summary>Creates a Color object using the <em>yellow</em> color.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.Color.YellowGreen">
|
||||
<summary>Creates a Color object using the <em>yellow green</em> color.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Point.#ctor(System.Int32,System.Int32)">
|
||||
<summary>Creates a new Point object from <em>x</em> & <em>y</em> coordinates.</summary>
|
||||
<param name="x">The Point's <em>x</em> coordinate.</param>
|
||||
<param name="y">The Point's <em>y</em> coordinate.</param>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Point.X">
|
||||
<summary>Gets or sets the Point's <em>x</em> coordinate.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Point.Y">
|
||||
<summary>Gets or sets the Point's <em>y</em> coordinate.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.PointF.#ctor(System.Single,System.Single)">
|
||||
<summary>Creates a new PointF object from <em>x</em> & <em>y</em> coordinates.</summary>
|
||||
<param name="x">The PointF's <em>x</em> coordinate.</param>
|
||||
<param name="y">The PointF's <em>y</em> coordinate.</param>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.PointF.X">
|
||||
<summary>Gets or sets the PointF's <em>x</em> coordinate.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.PointF.Y">
|
||||
<summary>Gets or sets the PointF's <em>y</em> coordinate.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.RectangleF.#ctor(System.Single,System.Single,System.Single,System.Single)">
|
||||
<summary>Creates a new RectangleF by determining its <see cref="Xceed.Drawing.NET~Xceed.Drawing.RectangleF~Width.html">Width</see> & <see cref="Xceed.Drawing.NET~Xceed.Drawing.RectangleF~Height.html">Height</see>, along with the location of its top left corner.</summary>
|
||||
<param name="x">The left coordinate associated with the RectangleF's top left corner.</param>
|
||||
<param name="y">The top coordinate associated with the RectangleF's top left corner.</param>
|
||||
<param name="width">The RectangleF's <see cref="Xceed.Drawing.NET~Xceed.Drawing.RectangleF~Width.html">Width</see>.</param>
|
||||
<param name="height">The RectangleF's <see cref="Xceed.Drawing.NET~Xceed.Drawing.RectangleF~Height.html">Height</see>.</param>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.RectangleF.Bottom">
|
||||
<summary>Gets the <em>y</em> coordinate that corresponds to the sum of the Y &<see cref="Xceed.Drawing.NET~Xceed.Drawing.RectangleF~Height.html">Height</see> properties.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.RectangleF.Height">
|
||||
<summary>Gets or sets the RectangleF's height.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.RectangleF.Left">
|
||||
<summary>Gets the <em>x</em> coordinate that corresponds to the left edge of the RectangleF.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.RectangleF.Right">
|
||||
<summary>Gets the <em>x</em> coordinate that corresponds to the sum of the X & <see cref="Xceed.Drawing.NET~Xceed.Drawing.RectangleF~Width.html">Width</see> properties.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.RectangleF.Top">
|
||||
<summary>Gets the <em>y</em> coordinate that corresponds to the top edge of the RectangleF.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.RectangleF.Value">
|
||||
<summary>Gets the value of the RectangleF object.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.RectangleF.Width">
|
||||
<summary>Gets or sets the RectangleF's width.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.RectangleF.X">
|
||||
<summary>Gets or sets the <em>x</em> coordinate that corresponds to the upper left corner of the RectangleF.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.RectangleF.Y">
|
||||
<summary>Gets or sets the <em>y</em> coordinate that corresponds to the upper left corner of the RectangleF.</summary>
|
||||
</member>
|
||||
<member name="F:Xceed.Drawing.RectangleF.Empty">
|
||||
<summary>Creates an empty RectangleF.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Drawing.Bitmap">
|
||||
<summary>Encapsulates a <em>SkiaSharp.SKBitmap</em> in .NET5+ or a <em>System.Drawing.Bitmap</em> in .NET Framework.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Drawing.Brush">
|
||||
<summary>Encapsulates a <em>SkiaSharp.SKPaint</em> in .NET5+ or a <em>System.Drawing.SolidBrush</em> in .NET Framework.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Drawing.Font">
|
||||
<summary>Encapsulates a <em>SkiaSharp.SKFont</em> in .NET5+ or a <em>System.Drawing.Font</em> in .NET Framework.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Drawing.Image">
|
||||
<summary>Encapsulates a <em>SkiaSharp.SKImage</em> in .NET5+ or a <em>System.Drawing.Image</em> in .NET Framework.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Drawing.Pen">
|
||||
<summary>Encapsulates a <em>SkiaSharp.SKPaint</em> in .NET5+ or a <em>System.Drawing.Pen</em> in .NET Framework.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Drawing.SolidBrush">
|
||||
<summary>Represents a Brush object with a specific <see cref="Xceed.Drawing.NET~Xceed.Drawing.Color.html">Color</see>.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Bitmap.#ctor(System.Int32,System.Int32)">
|
||||
<summary>Creates a new Bitmap object from a width & height value.</summary>
|
||||
<param name="width">The Bitmap's width.</param>
|
||||
<param name="height">The Bitmap's height.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Bitmap.Dispose">
|
||||
<summary>Releases all resources used by the Bitmap.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Bitmap.FromImage(Xceed.Drawing.Image)">
|
||||
<summary>Creates a Bitmap from an <see cref="Xceed.Drawing.NET~Xceed.Drawing.Image.html">Image</see>.</summary>
|
||||
<param name="image">The Image that will be used to create the <see cref="Xceed.Drawing.NET~Xceed.Drawing.Bitmap.html">Bitmap</see>.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Bitmap.SetPixel(System.Int32,System.Int32,Xceed.Drawing.Color)">
|
||||
<summary>Sets the Color of a target pixel.</summary>
|
||||
<param name="x">The pixel's <em>x</em> coordinate.</param>
|
||||
<param name="y">The pixel's <em>y</em> coordinate.</param>
|
||||
<param name="color">The pixel's Color.</param>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Bitmap.Value">
|
||||
<summary>Gets the value of the Bitmap object.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Brush.#ctor(Xceed.Drawing.Color)">
|
||||
<summary>Creates a new Brush object from a <see cref="Xceed.Drawing.NET~Xceed.Drawing.Color.html">Color</see>.</summary>
|
||||
<param name="color">The Color that will be used to create the <see cref="Xceed.Drawing.NET~Xceed.Drawing.Brush.html">Brush</see>.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Brush.Dispose">
|
||||
<summary>Releases all resources used by the Brush.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Brush.Color">
|
||||
<summary>Gets the Brush's <see cref="Xceed.Drawing.NET~Xceed.Drawing.Color.html">Color</see>.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Font.#ctor">
|
||||
<summary>Creates a new Font object from specific values.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Font.#ctor(System.String,System.Single,Xceed.Drawing.FontStyle)">
|
||||
<summary>Creates a new Font object using <em>fontFamily</em>, <em>fontSize</em> & <em>fontStyle</em> values.</summary>
|
||||
<param name="fontFamily">The font family to which the created Font will belong.</param>
|
||||
<param name="fontSize">The size of the Font that will be created.</param>
|
||||
<param name="fontStyle">The style that will be applied to the created Font.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Font.#ctor(System.String,System.Single)">
|
||||
<summary>Creates a new Font object using <em>fontFamily</em> & <em>fontSize</em> values.</summary>
|
||||
<param name="fontFamily">The font family to which the created Font will belong.</param>
|
||||
<param name="fontSize">The size of the Font that will be created.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Font.Dispose">
|
||||
<summary>Releases all resources used by the Font.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Font.FromFile(System.String)">
|
||||
<summary>Gets the Font's <see cref="Xceed.Drawing.NET~Xceed.Drawing.Font~Name.html">Name</see> from a font
|
||||
file & then returns it.</summary>
|
||||
<param name="file">The file that will be used to get the Font's <see cref="Xceed.Drawing.NET~Xceed.Drawing.Font~Name.html">Name</see>.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Font.GetFontImage(Xceed.Drawing.Font,System.Byte[]@,System.Int32@,System.Boolean@)">
|
||||
<summary>Gets the Font's byte array.</summary>
|
||||
<param name="font">The Font that will be evaluated.</param>
|
||||
<param name="image">An output parameter that contains the Font's byte array.</param>
|
||||
<param name="imageSize">An output parameter that contains the size of the Font's byte array.</param>
|
||||
<param name="corrupted">An output parameter that is <em>true</em> if the Font's byte array is corrupted.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Font.GetHeight(System.Single@,System.Single@)">
|
||||
<summary>Returns the Font's height, as well as its ascent & descent.</summary>
|
||||
<param name="ascent">An output parameter that contains the Font's ascent.</param>
|
||||
<param name="descent">An output parameter that contains the Font's descent.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Font.GetTextHeight(System.String,System.String,System.Single,System.Int32)">
|
||||
<summary>Calculates the text's height, based on the Font's <see cref="Xceed.Drawing.NET~Xceed.Drawing.Font~Name.html">Name</see> & <see cref="Xceed.Drawing.NET~Xceed.Drawing.Font~Size.html">Size</see>, as well as
|
||||
the text block's width.</summary>
|
||||
<param name="text">The text that will be evaluated.</param>
|
||||
<param name="fontName">The Name of the <see cref="Xceed.Drawing.NET~Xceed.Drawing.Font.html">Font</see> that will be
|
||||
used to calculate the text's height.</param>
|
||||
<param name="fontSize">The Size of the <see cref="Xceed.Drawing.NET~Xceed.Drawing.Font.html">Font</see> that will be
|
||||
used to calculate the text's height.</param>
|
||||
<param name="columnWidthInPixels">The text block's width.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Font.GetTextWidth(System.String,System.String,System.Single)">
|
||||
<summary>Calculates the text's width, based on the Font's <see cref="Xceed.Drawing.NET~Xceed.Drawing.Font~Name.html">Name</see> & <see cref="Xceed.Drawing.NET~Xceed.Drawing.Font~Size.html">Size</see>.</summary>
|
||||
<param name="text">The text that will be evaluated.</param>
|
||||
<param name="fontName">The Name of the <see cref="Xceed.Drawing.NET~Xceed.Drawing.Font.html">Font</see> that will be
|
||||
used to calculate the text's width.</param>
|
||||
<param name="fontSize">The Size of the <see cref="Xceed.Drawing.NET~Xceed.Drawing.Font.html">Font</see> that will be
|
||||
used to calculate the text's width.</param>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Font.Name">
|
||||
<summary>Gets the Font's name.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Font.Size">
|
||||
<summary>Gets the Font's size.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Font.Style">
|
||||
<summary>Gets the Font's style.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Font.Value">
|
||||
<summary>Gets the value of the Font object.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Image.Clone(Xceed.Drawing.Image)">
|
||||
<summary>Creates a copy of an Image.</summary>
|
||||
<param name="image">The Image that will be copied.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Image.CompressJPEG(Xceed.Drawing.Image,System.Int32)">
|
||||
<summary>Creates a memory stream from a .jpeg image.</summary>
|
||||
<param name="image">The .jpeg image that will be used to create the memory stream.</param>
|
||||
<param name="quality">The quality of the encoding used for compressing the .jpeg.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Image.DetectFormat(System.IO.Stream)">
|
||||
<summary>Returns the Image's format as a string.</summary>
|
||||
<param name="stream">The stream that is associated with the evaluated Image.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Image.Dispose">
|
||||
<summary>Releases all resources used by the Image.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Image.Draw(System.UInt32,Xceed.Drawing.RectangleF,System.Single@,System.Single@)">
|
||||
<summary>Draw the Image based on rotation & cropping values.</summary>
|
||||
<param name="rotation">The angle that determines what kind of rotation will be applied to the Image.</param>
|
||||
<param name="cropping">The value that determines how the Image will be cropped on its 4 sides.</param>
|
||||
<param name="updatedWidthPercent">An output parameter for the Image's <see cref="Xceed.Drawing.NET~Xceed.Drawing.Image~Width.html">Width</see>.</param>
|
||||
<param name="updatedHeightPercent">An output parameter for the Image's <see cref="Xceed.Drawing.NET~Xceed.Drawing.Image~Height.html">Height</see>.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Image.FromBitmap(Xceed.Drawing.Bitmap)">
|
||||
<summary>Creates an Image from a <see cref="Xceed.Drawing.NET~Xceed.Drawing.Bitmap.html">Bitmap</see> object.</summary>
|
||||
<param name="bitmap">The Bitmap object that will be used to create the <see cref="Xceed.Drawing.NET~Xceed.Drawing.Image.html">Image</see>.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Image.FromFile(System.String)">
|
||||
<summary>Creates an Image from a file's path.</summary>
|
||||
<param name="file">The path that will be used to create the Image.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Image.FromStream(System.IO.Stream)">
|
||||
<summary>Creates an Image from a stream object.</summary>
|
||||
<param name="stream">The stream object that will be used to create the Image.</param>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Image.Height">
|
||||
<summary>Gets the Image's height.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Image.HorizontalResolution">
|
||||
<summary>Gets the Image's horizontal resolution.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Image.Value">
|
||||
<summary>Gets the value of the Image object.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Image.VerticalResolution">
|
||||
<summary>Gets the Image's vertical resolution.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Image.Width">
|
||||
<summary>Gets the Image's width.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Pen.#ctor">
|
||||
<summary>Creates a Pen object from specific values.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Pen.#ctor(Xceed.Drawing.Color,System.Single)">
|
||||
<summary>Creates a Pen object from a <see cref="Xceed.Drawing.NET~Xceed.Drawing.Pen~Color.html">Color</see>
|
||||
& a specific <see cref="Xceed.Drawing.NET~Xceed.Drawing.Pen~Width.html">Width</see>.</summary>
|
||||
<param name="penColor">The Pen's <see cref="Xceed.Drawing.NET~Xceed.Drawing.Pen~Color.html">Color</see>.</param>
|
||||
<param name="penWidth">The Pen's <see cref="Xceed.Drawing.NET~Xceed.Drawing.Pen~Width.html">Width</see>.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Pen.#ctor(Xceed.Drawing.Color)">
|
||||
<summary>Creates a Pen object from a <see cref="Xceed.Drawing.NET~Xceed.Drawing.Pen~Color.html">Color</see>.</summary>
|
||||
<param name="penColor">The Pen's <see cref="Xceed.Drawing.NET~Xceed.Drawing.Pen~Color.html">Color</see>.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Pen.GetEndCap">
|
||||
<summary>Returns the type of cap that will be used by the Pen object.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.Pen.GetLineJoin">
|
||||
<summary>Returns the type of line join that will be used by the Pen object.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Pen.Color">
|
||||
<summary>Gets or sets the Pen's <see cref="Xceed.Drawing.NET~Xceed.Drawing.Color.html">Color</see>.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Pen.DashOffset">
|
||||
<summary>Gets the dash's offset.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Pen.DashPattern">
|
||||
<summary>Gets or sets the pattern that will be used for the dash that will be drawn by the Pen.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Pen.DashStyle">
|
||||
<summary>Gets or sets the Pen's <see cref="Xceed.Drawing.NET~Xceed.Drawing.DashStyle.html">DashStyle</see>.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Pen.MiterLimit">
|
||||
<summary>Gets the Pen object's miter limit.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Drawing.Pen.Width">
|
||||
<summary>Gets or sets the Pen object's width.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Drawing.SolidBrush.#ctor(Xceed.Drawing.Color)">
|
||||
<summary>Creates a Brush using a solid <see cref="Xceed.Drawing.NET~Xceed.Drawing.Color.html">Color</see>.</summary>
|
||||
<param name="color">The SolidBrush's <see cref="Xceed.Drawing.NET~Xceed.Drawing.Color.html">Color</see>.</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
Binary file not shown.
@ -1,198 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Xceed.Words.NET</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Xceed.Words.NET.DigitalCertificate">
|
||||
<summary>Represents a holder for a X509Certificate2 certificate.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Words.NET.DigitalSignature">
|
||||
<summary>Represents a digital signature in a document.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Words.NET.DocX">
|
||||
<summary>Represents a DocX document.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Words.NET.Licenser">
|
||||
<summary>Represents the class that registers the classes defined in the Xceed.Words.NET assembly.</summary>
|
||||
</member>
|
||||
<member name="T:Xceed.Words.NET.SignOptions">
|
||||
<summary>Represents the options that can be set when signing a document.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DigitalCertificate.Create(System.String,System.String)">
|
||||
<summary>Creates a DigitalCertificate object from the certificate path and password received. This certificate will be used to sign a document with the DocX.Sign()
|
||||
method.<br /></summary>
|
||||
<param name="certificatePath">The path to the certificate to register.</param>
|
||||
<param name="certificatePassword">The password required to access the certificate.</param>
|
||||
</member>
|
||||
<member name="P:Xceed.Words.NET.DigitalCertificate.Certificate">
|
||||
<summary>Gets the certificate associated with this object.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Words.NET.DigitalSignature.CertificateIssuer">
|
||||
<summary>Gets the issuer of the certificate needed in order to sign the document.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Words.NET.DigitalSignature.CertificateOwner">
|
||||
<summary>Gets the owner of the certificate needed in order to sign the document.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Words.NET.DigitalSignature.Comments">
|
||||
<summary>Gets the comments from the signer on the purpose for signing the document.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Words.NET.DigitalSignature.IsValid">
|
||||
<summary>Gets if the digital signature is valid and confirms that the document has not been modified since signed.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Words.NET.DigitalSignature.SignTime">
|
||||
<summary>Gets the time at which the document was signed.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.AddSignatureLine(Xceed.Document.NET.SignatureLineOptions)">
|
||||
<summary>Adds a SignatureLine to the document.</summary>
|
||||
<returns>The SignatureLine added to the document.</returns>
|
||||
<param name="signatureLineOptions">The options required to create the SignatureLine in the document. By default, null.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.AreSignaturesValid">
|
||||
<summary>Checks the validity of the digital signatures in a document.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.ConvertToPdf">
|
||||
<summary>Converts a DocX document into a PDF document.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.Copy">
|
||||
<summary>Copies the document into a new Document.</summary>
|
||||
<returns>A copy of the Document.</returns>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.Create">
|
||||
<summary>Creates a document.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.GetSignatures">
|
||||
<summary>Gets the digital signatures in a document.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.IsSignatureLineSigned(Xceed.Document.NET.SignatureLine)">
|
||||
<summary>Evaluates if a SignatureLine is signed.</summary>
|
||||
<returns>True if the SignatureLine is signed, false otherwise.</returns>
|
||||
<param name="signatureLine">The SignatureLine to evaluate. The evaluation checks if it is signed.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.IsSignatureLineValid(Xceed.Document.NET.SignatureLine)">
|
||||
<summary>Evaluates if a SignatureLine is signed and if the digital signature is valid.</summary>
|
||||
<returns>True if the SignatureLine is signed and the digital signature is valid, false otherwise.</returns>
|
||||
<param name="signatureLine">The SignatureLine to evaluate. The evaluation checks if it is signed and if the associated digital signature is valid.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.Load">
|
||||
<summary>Loads a document into a DocX object.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.RemoveAllSignatures">
|
||||
<summary>Removes all the digital signatures in a document.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.RemoveSignature">
|
||||
<summary>Removes a digital signature from a document.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.Save(System.String)">
|
||||
<summary>Saves this document.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.SaveAs">
|
||||
<summary>Saves this document but allows to set some options first.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.Sign">
|
||||
<summary>Allows to digitally sign a document.</summary>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.AreSignaturesValid(System.String)">
|
||||
<summary>Returns true if the input document's digital signatures are all valid, false otherwise.</summary>
|
||||
<returns>True if all the digital signatures contained in the input document are valid, false otherwise.</returns>
|
||||
<param name="inputFileName">The path of the document. Used to validate its digital signatures.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.AreSignaturesValid(System.IO.Stream)">
|
||||
<summary>Returns true if the input document stream's digital signatures are all valid, false otherwise.</summary>
|
||||
<returns>True if the digital signatures contained in the input document stream are all valid, false otherwise.</returns>
|
||||
<param name="inputStream">The path of the document stream. Used to validate its digital signatures.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.Create(System.IO.Stream,Xceed.Document.NET.DocumentTypes)">
|
||||
<summary>Creates a DocX Document using a Stream.</summary>
|
||||
<returns>A DocX object which represents the document.</returns>
|
||||
<param name="stream">The Stream to create the document from.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.Create(System.String,Xceed.Document.NET.DocumentTypes)">
|
||||
<summary>Creates a DocX Document using a fully qualified or relative filename.</summary>
|
||||
<returns>A <strong>DocX</strong> object which represents the document.</returns>
|
||||
<param name="filename">The fully qualified or relative filename.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.GetSignatures(System.String)">
|
||||
<summary>Returns the digital signatures of the input document.</summary>
|
||||
<returns>The list of Digital signatures found in the input document.</returns>
|
||||
<param name="inputFileName">The path of the document. Used to retrieve the digital signatures.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.GetSignatures(System.IO.Stream)">
|
||||
<summary>Returns the digital signatures of the input document stream.</summary>
|
||||
<returns>The list of Digital signatures found in the input document stream.</returns>
|
||||
<param name="inputStream">The path of the document stream. Used to retrieve the digital signatures.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.IsSigned(System.String)">
|
||||
<summary>Returns true if the input document contains at least 1 digital signature, false otherwise.</summary>
|
||||
<returns>True if the input document contains at least 1 digital signature, false otherwise.</returns>
|
||||
<param name="inputFileName">The path of the document. Used to validate if that document is signed.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.IsSigned(System.IO.Stream)">
|
||||
<summary>Returns true if the input document stream contains at least 1 digital signature, false otherwise.</summary>
|
||||
<returns>True if the input document stream contains at least 1 digital signature, false otherwise.</returns>
|
||||
<param name="inputStream">The document stream used to validate if that stream is signed.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.Load(System.IO.Stream)">
|
||||
<summary>Loads a document into a DocX object using a Stream.</summary>
|
||||
<returns>A DocX object which represents the document.</returns>
|
||||
<param name="stream">The Stream to load the document from.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.Load(System.String)">
|
||||
<summary>Loads a document into a DocX object using a fully qualified or relative filename.</summary>
|
||||
<returns>A DocX object which represents the document.</returns>
|
||||
<param name="filename">The fully qualified or relative filename.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.RemoveAllSignatures(System.String,System.String)">
|
||||
<summary>Removes all the digital signatures from an input document and saves the result in an output document.</summary>
|
||||
<param name="inputFileName">The path of the document where all the digital signatures are to be removed.</param>
|
||||
<param name="outputFileName">The path where the document will be saved after the digital signatures are removed.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.RemoveAllSignatures(System.IO.Stream,System.IO.Stream)">
|
||||
<summary>Removes all the digital signatures from an input document stream and saves the result in an output document stream.</summary>
|
||||
<param name="inputStream">The path of the document stream where all the digital signatures are to be removed.</param>
|
||||
<param name="outputStream">The path where the document stream will be saved after the digital signatures are removed.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.RemoveSignature(System.String,System.String,Xceed.Words.NET.DigitalSignature)">
|
||||
<summary>Removes a specific digital signature from an input document and saves the result in an output document.</summary>
|
||||
<param name="inputFileName">The path of the document where the digital signature will be removed.</param>
|
||||
<param name="outputFileName">The path where the document will be saved ater the digital signature is removed.</param>
|
||||
<param name="signature">The digital signature to remove.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.RemoveSignature(System.IO.Stream,System.IO.Stream,Xceed.Words.NET.DigitalSignature)">
|
||||
<summary>Removes a specific digital signature from an input document stream and saves the result in an output document stream.</summary>
|
||||
<param name="inputStream">The path of the document stream where the digital signature will be removed.</param>
|
||||
<param name="outputStream">The path where the document stream will be saved ater the digital signature is removed.</param>
|
||||
<param name="signature">The digital signature to remove.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.Sign(System.String,System.String,Xceed.Words.NET.DigitalCertificate,Xceed.Words.NET.SignOptions)">
|
||||
<summary>Signs an input document with a certificate and sign options, and saves the result in an output document.</summary>
|
||||
<param name="inputFileName">The path of the document to sign.</param>
|
||||
<param name="outputFileName">The path to store the signed document.</param>
|
||||
<param name="certificate">The certificate used to sign the document.</param>
|
||||
<param name="signOptions">The options set to sign the document. By default, null.</param>
|
||||
</member>
|
||||
<member name="M:Xceed.Words.NET.DocX.Sign(System.IO.Stream,System.IO.Stream,Xceed.Words.NET.DigitalCertificate,Xceed.Words.NET.SignOptions)">
|
||||
<summary>Signs an input document stream with a certificate and sign options and saves the result in an output document stream.</summary>
|
||||
<param name="inputStream">The stream containing the document to sign.</param>
|
||||
<param name="outputStream">The stream that will contain the signed document.</param>
|
||||
<param name="certificate">The certificate used to sign the stream.</param>
|
||||
<param name="signOptions">The options set to sign the stream. By default, null.</param>
|
||||
</member>
|
||||
<member name="P:Xceed.Words.NET.Licenser.LicenseKey">
|
||||
<summary>Gets or sets the license key used to license this product.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Words.NET.SignOptions.Comments">
|
||||
<summary>Gets or sets the comments on the purpose for signing the document.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Words.NET.SignOptions.SignatureLineId">
|
||||
<summary>Gets or sets the id of the SignatureLine associated with the digital signature.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Words.NET.SignOptions.SignatureLineImage">
|
||||
<summary>Gets or sets the image that will be used to sign the SignatureLine. The SignatureLineId must be set to the associated SignatureLine.</summary>
|
||||
</member>
|
||||
<member name="P:Xceed.Words.NET.SignOptions.SignatureLineText">
|
||||
<summary>Gets or sets the text that will be used to sign the SignatureLine. The SignatureLineId must be set to the associated SignatureLine and the SignatureLineImage
|
||||
must be null to use this property.<br /></summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
兴诺模板/兴诺模板/CS兴诺-A充电桩-系统购销合同-不含施工-含调试费-2024-9-2.docx
Normal file
BIN
兴诺模板/兴诺模板/CS兴诺-A充电桩-系统购销合同-不含施工-含调试费-2024-9-2.docx
Normal file
Binary file not shown.
BIN
兴诺模板/兴诺模板/CS兴诺-A充电桩-系统购销合同-含施工-2024-5-24.docx
Normal file
BIN
兴诺模板/兴诺模板/CS兴诺-A充电桩-系统购销合同-含施工-2024-5-24.docx
Normal file
Binary file not shown.
BIN
兴诺模板/兴诺模板/CW充电桩维保服务合同-按服务事件报价-2024-4-11.docx
Normal file
BIN
兴诺模板/兴诺模板/CW充电桩维保服务合同-按服务事件报价-2024-4-11.docx
Normal file
Binary file not shown.
BIN
兴诺模板/兴诺模板/CW技术-合同模版.docx
Normal file
BIN
兴诺模板/兴诺模板/CW技术-合同模版.docx
Normal file
Binary file not shown.
BIN
兴诺模板/兴诺模板/C兴诺-A充电桩项目购销合同模板-2024-6-25.docx
Normal file
BIN
兴诺模板/兴诺模板/C兴诺-A充电桩项目购销合同模板-2024-6-25.docx
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user