تطبيق التنسيق الشرطي في الأوراق العمل

استخدام Aspose.Cells لتطبيق تنسيق مشروط بناءً على قيمة الخلية

  1. قم بتنزيل وتثبيت Aspose.Cells.
    1. قم بتنزيل Aspose.Cells for .NET.
  2. قم بتثبيته على كمبيوتر التطوير الخاص بك. جميع مكونات Aspose، عند التثبيت، تعمل في وضع التقييم. وضع التقييم لا يحتوي على حد زمني ويقوم فقط بحقن العلامات المائية إلى الوثائق المنتجة.
  3. إنشاء مشروع. قم بتشغيل برنامج Visual Studio.NET وأنشئ تطبيقًا جديدًا للوحدة النمطية. يقوم هذا المثال بإنشاء تطبيق وحدة نمطية C#، ولكن يمكنك أيضًا استخدام VB.NET.
  4. إضافة المراجع. أضف مرجعًا إلى Aspose.Cells في مشروعك، على سبيل المثال، أضف مرجعًا إلى ….\Program Files\Aspose\Aspose.Cells\Bin\Net1.0\Aspose.Cells.dll
  5. *تطبيق التنسيق الشرطي بناءً على قيمة الخلية. أدناه هو الكود المستخدم لإنجاز المهمة. يتم تطبيق التنسيق الشرطي على خلية.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Create directory if it is not already present.
bool IsExists = System.IO.Directory.Exists(dataDir);
if (!IsExists)
System.IO.Directory.CreateDirectory(dataDir);
// Instantiating a Workbook object
Workbook workbook = new Workbook();
Worksheet sheet = workbook.Worksheets[0];
// Adds an empty conditional formatting
int index = sheet.ConditionalFormattings.Add();
FormatConditionCollection fcs = sheet.ConditionalFormattings[index];
// Sets the conditional format range.
CellArea ca = new CellArea();
ca.StartRow = 0;
ca.EndRow = 0;
ca.StartColumn = 0;
ca.EndColumn = 0;
fcs.AddArea(ca);
// Adds condition.
int conditionIndex = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "50", "100");
// Sets the background color.
FormatCondition fc = fcs[conditionIndex];
fc.Style.BackgroundColor = Color.Red;
// Saving the Excel file
workbook.Save(dataDir+ "output.out.xls", SaveFormat.Auto);

عند تنفيذ الكود أعلاه، سيتم تطبيق التنسيق الشرطي على الخلية “A1” في ورقة العمل الأولى للملف الناتج (output.xls). التنسيق الشرطي الذي تم تطبيقه على A1 يعتمد على قيمة الخلية. إذا كانت قيمة الخلية A1 بين 50 و 100، سيكون لون الخلفية أحمرًا بسبب التنسيق الشرطي المطبق.

استخدام Aspose.Cells لتطبيق التنسيق الشرطي بناءً على الصيغة

  1. تطبيق التنسيق الشرطي اعتمادًا على الصيغة (كود مصغر) أدناه هو الكود لإنجاز المهمة. يتم تطبيق التنسيق الشرطي على B3.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Create directory if it is not already present.
bool IsExists = System.IO.Directory.Exists(dataDir);
if (!IsExists)
System.IO.Directory.CreateDirectory(dataDir);
// Instantiating a Workbook object
Workbook workbook = new Workbook();
Worksheet sheet = workbook.Worksheets[0];
// Adds an empty conditional formatting
int index = sheet.ConditionalFormattings.Add();
FormatConditionCollection fcs = sheet.ConditionalFormattings[index];
// Sets the conditional format range.
CellArea ca = new CellArea();
ca = new CellArea();
ca.StartRow = 2;
ca.EndRow = 2;
ca.StartColumn = 1;
ca.EndColumn = 1;
fcs.AddArea(ca);
// Adds condition.
int conditionIndex = fcs.AddCondition(FormatConditionType.Expression);
// Sets the background color.
FormatCondition fc = fcs[conditionIndex];
fc.Formula1 = "=IF(SUM(B1:B2)>100,TRUE,FALSE)";
fc.Style.BackgroundColor = Color.Red;
sheet.Cells["B3"].Formula = "=SUM(B1:B2)";
sheet.Cells["C4"].PutValue("If Sum of B1:B2 is greater than 100, B3 will have RED background");
// Saving the Excel file
workbook.Save(dataDir+ "output.out.xls", SaveFormat.Auto);

عند تنفيذ الكود أعلاه، سيتم تطبيق التنسيق الشرطي على الخلية “B3” في الورقة العمل الأولى للملف الناتج (output.xls). يعتمد التنسيق الشرطي المطبق على الصيغة التي تحسب قيمة “B3” كمجموع B1 و B2.