Aspose.Cells.Examples.CSharp.Formatting.ConditionalFormatting.AddNotContainsError C# (CSharp) Метод

AddNotContainsError() приватный Метод

private AddNotContainsError ( ) : void
Результат void
        private void AddNotContainsError()
        {
            FormatConditionCollection conds = GetFormatCondition("E19:G20", Color.LightSeaGreen);
            int idx = conds.AddCondition(FormatConditionType.NotContainsErrors);
            FormatCondition cond = conds[idx];
            cond.Style.BackgroundColor = Color.Pink;
            cond.Style.Pattern = BackgroundType.Solid;
            Cell c = _sheet.Cells["E19"];
            c.PutValue("  ");
            c = _sheet.Cells["G20"];
            c.PutValue("  ");
        }
        // This method implements the ContainsErrors conditional formatting type.