Как реализовать Excel vbA в C #

Можете ли вы помочь мне переписать следующий код Excel VB на C #?

Range("C9:E11").Select
Selection.FormatConditions.Add Type:=xlCellValue, Operator:=xlEqual, _
    Formula1:="=1"
Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
With Selection.FormatConditions(1).Interior
    .PatternColorIndex = xlAutomatic
    .Color = 255
    .TintAndShade = 0
End With
Selection.FormatConditions(1).StopIfTrue = False

c#,excel-vba,excel-2007,vba,excel,

1

Ответов: 2


5 ов

То, что вы ищете, - это автоматизация Excel. В значительной степени это означает использование набора COM-объектов, предоставленных Excel, для удаленного управления Excel из другого приложения.

Все, что вы можете сделать с VBA, вы можете достичь с помощью Automation (ОК, почти все).

Если вы Google для «Excel Automation C #», вы получите множество хитов. Как автоматизировать Microsoft Excel с Microsoft Visual C # .NET был первым, который вернулся ко мне и выглядит как хорошее место для начала работы.

Надеюсь это поможет,


2 принят
 using Excel = Microsoft.Office.Interop.Excel;
 ...
 object mis = Type.Missing;

 Excel.FormatCondition cond =
    (Excel.FormatCondition)range.FormatConditions.Add(Excel.XlFormatConditionType.xlCellValue,
    Excel.XlFormatConditionOperator.xlEqual, "=1",
    mis, mis, mis, mis, mis);
    cond.Interior.PatternColorIndex = Excel.Constants.xlAutomatic;
    cond.Interior.TintAndShade = 0;
    cond.Interior.Color = ColorTranslator.ToWin32(Color.White);
    cond.StopIfTrue = false;
C #, Excel-VBA, Excel-2007, VBA, первенствует,
Похожие вопросы
Яндекс.Метрика