1

プログラムで条件付き書式を使用して、Excelワークシートで重複する値を見つける必要があります。

この方法で試しましたが、6行のコードでCOM例外が発生しました

Excel.FormatConditionにキャストできません

これが私のコードです

Excel.Workbook xlWB = Application.ActiveWorkbook;
Excel.Worksheet xlWS = xlWB.ActiveSheet;
xlWS.Range["B2:B9"].Select();
Excel.Range xlS = Application.Selection;
xlS.FormatConditions.AddUniqueValues();
Excel.FormatCondition xlFC = 
    (Excel.FormatCondition)xlS.FormatConditions[xlS.FormatConditions.Count];
xlFC.SetFirstPriority();
Excel.FormatCondition xlFC1 = (Excel.FormatCondition)xlS.FormatConditions[1];
xlFC1.Interior.Pattern = Excel.XlPattern.xlPatternAutomatic;
xlFC1.Interior.TintAndShade = 0;
xlFC1.Interior.Color = ColorTranslator.FromOle(13551615);
4

1 に答える 1

0

それを見てくださいMSDNリンク

またはあなたはおそらくこのようなものを使うことができます

 Excel.Range usedRange = Worksheet.UsedRange;
 usedRange.Interior.Color =    
 System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red);

  FormatCondition format = (FormatCondition)(Worksheet.get_Range("A1:D13",
            Type.Missing).FormatConditions.Add(XlFormatConditionType.xlExpression,    
  XlFormatConditionOperator.xlEqual,
            "=$A1=$D1", Type.Missing, Type.Missing, Type.Missing, Type.Missing, 
  Type.Missing));

   format.Font.Bold = true;
   format.Interior.Color = 
   System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Yellow);//Duplicate values

これが役立つことを願っています..それは私のために働いた

于 2013-01-28T07:24:12.413 に答える