コード例 #1
0
ファイル: RtfImportMgr.cs プロジェクト: pixelia-es/RazorPDF2
 /**
 * Imports a color value. The color number for the color defined
 * by its red, green and blue values is determined and then the
 * resulting mapping is added.
 *
 * @param colorNr The original color number.
 * @param color The color to import.
 */
 public void ImportColor(String colorNr, Color color)
 {
     RtfColor rtfColor = new RtfColor(this.rtfDoc, color);
     this.importColorMapping[colorNr] = rtfColor.GetColorNumber().ToString();
 }