Bir çalışma sayfasına yazmadan özel işlevin doğrudan hesaplanması
Contents
[
Hide
]
Bir çalışma sayfasına yazmadan özel işlevin doğrudan hesaplanması
Bu konuda, özel işlevlerinizi önce bir çalışma sayfasına yazmadan doğrudan nasıl hesaplayabileceğiniz açıklanmaktadır. lütfenWorksheet.CalculateFormula(dize formülü, CalculationOptions tercihleri)Bu amaç için yöntem.
Lütfen bu yöntemin kullanımını gösteren aşağıdaki örnek koda bakın. MyCompany.CustomFunction() adlı özel bir işlev kullandık ve değerini “Aspose.Cells” olarak hesapladık. bu değer otomatik olarak A1 hücresinin değeri olan “Welcome to” ile hesaplama motoru tarafından birleştirilir ve hesaplanan son değer “Welcome to Aspose.Cells” olarak döner. özel fonksiyonumuzu bir çalışma sayfasında herhangi bir yere yazmaz ve doğrudan kendi özel mantığımızla hesaplanır.
Programlama Örneği
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
class ICustomEngine : AbstractCalculationEngine | |
{ | |
// Override the Calculate method with custom logic | |
public override void Calculate(CalculationData data) | |
{ | |
// Check the forumla name and calculate it yourself | |
if (data.FunctionName == "MyCompany.CustomFunction") | |
{ | |
// This is our calculated value | |
data.CalculatedValue = "Aspose.Cells."; | |
} | |
} | |
} | |
class ImplementDirectCalculationOfCustomFunction | |
{ | |
public static void Run() | |
{ | |
// Create a workbook | |
Workbook wb = new Workbook(); | |
// Accesss first worksheet | |
Worksheet ws = wb.Worksheets[0]; | |
// Add some text in cell A1 | |
ws.Cells["A1"].PutValue("Welcome to "); | |
// Create a calculation options with custom engine | |
CalculationOptions opts = new CalculationOptions(); | |
opts.CustomEngine = new ICustomEngine(); | |
// This line shows how you can call your own custom function without | |
// a need to write it in any worksheet cell | |
// After the execution of this line, it will return | |
// Welcome to Aspose.Cells. | |
object ret = ws.CalculateFormula("=A1 & MyCompany.CustomFunction()", opts); | |
// Print the calculated value on Console | |
Console.WriteLine("Calculated Value: " + ret); | |
} | |
} |
Konsol Çıkışı
Aşağıda, yukarıdaki örnek kodun konsol çıktısı bulunmaktadır.
Calculated Value: Welcome to Aspose.Cells.