条件付き書式を使用して交互の行と列に陰影を適用する

Contents
[ ]

この記事では、ROW、COLUMN、MOD などの Excel の組み込み関数を使用します。先に提供されたコード スニペットをよりよく理解するために、これらの関数の詳細を次に示します。

  • **行()**関数は、セル参照の行番号を返します。参照パラメーターを省略した場合、参照は ROW 関数が入力されたセル アドレスであると見なされます。
  • **桁()**関数は、セル参照の列番号を返します。参照パラメータが省略された場合、参照は COLUMN 関数が入力されたセル アドレスであると見なされます。
  • **モッド()**関数は、数値を除数で割った後の剰余を返します。ここで、関数の最初のパラメーターは、求めたい剰余の数値であり、2 番目のパラメーターは、number パラメーターへの除算に使用される数値です。除数が 0 の場合、#DIV/0 が返されます。エラー。

Aspose.Cells for .NET API の助けを借りて、この目標を達成するためのコードを書き始めましょう。

// 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 an instance of Workbook or load existing
var book = new Workbook();
// Access the Worksheet on which desired rule has to be applied
var sheet = book.Worksheets[0];
// Add FormatConditions to the instance of Worksheet
int idx = sheet.ConditionalFormattings.Add();
// Access the newly added FormatConditions via its index
var conditionCollection = sheet.ConditionalFormattings[idx];
// Define a CellsArea on which conditional formatting will be applicable
// The code creates a CellArea ranging from A1 to I20
var area = CellArea.CreateCellArea("A1", "I20");
//Add area to the instance of FormatConditions
conditionCollection.AddArea(area);
// Add a condition to the instance of FormatConditions
// For this case, the condition type is expression, which is based on some formula
idx = conditionCollection.AddCondition(FormatConditionType.Expression);
// Access the newly added FormatCondition via its index
FormatCondition formatCondirion = conditionCollection[idx];
// Set the formula for the FormatCondition
// Formula uses the Excel's built-in functions as discussed earlier in this article
formatCondirion.Formula1 = @"=MOD(ROW(),2)=0";
// Set the background color and patter for the FormatCondition's Style
formatCondirion.Style.BackgroundColor = Color.Blue;
formatCondirion.Style.Pattern = BackgroundType.Solid;
// Save the result on disk
book.Save(dataDir + "output_out.xlsx");

次のスナップショットは、Excel アプリケーションに読み込まれた結果のスプレッドシートを示しています。

todo:画像_代替_文章

シェーディングを別の列に適用するには、式を変更するだけです**=MOD(ROW(),2)=0**なので**=MOD(COLUMN(),2)=0** 、 あれは;行インデックスを取得する代わりに、式を変更して列インデックスを取得します。 この場合、結果のスプレッドシートは次のようになります。

todo:画像_代替_文章