العمل مع تأثير التوهج للشكل أو المخطط باستخدام C++

سيناريوهات الاستخدام المحتملة

توفر Aspose.Cells الخاصية Shape.Glow مع فئة GlowEffect للعمل مع تأثير التوهج للشكل أو المخطط. تحتوي فئة GlowEffect على الخصائص التالية التي يمكن ضبطها لتحقيق نتائج مختلفة حسب متطلبات التطبيق.

العمل مع تأثير التوهج الداخلي للشكل أو الرسم البياني

يقوم الكود النموذجي التالي بتحميل ملف إكسل المصدر والوصول إلى الشكل الأول في ورقة العمل الأولى ويضبط الخصائص الفرعية لخاصية Shape.Glow ثم يحفظ المصنف في ملف إكسل الإخراج.

#include <iostream>
#include "Aspose.Cells.h"

using namespace Aspose::Cells;
using namespace Aspose::Cells::Drawing;

int main()
{
    Aspose::Cells::Startup();

    // Source directory path
    U16String srcDir(u"..\\Data\\01_SourceDirectory\\");

    // Output directory path
    U16String outDir(u"..\\Data\\02_OutputDirectory\\");

    // Load your source excel file
    Workbook wb(srcDir + u"sample.xlsx");

    // Access first worksheet
    Worksheet ws = wb.GetWorksheets().Get(0);

    // Access first shape
    Shape sh = ws.GetShapes().Get(0);

    // Set the glow effect of the shape, Set its Size and Transparency properties
    GlowEffect ge = sh.GetGlow();
    ge.SetSize(30);
    ge.SetTransparency(0.4);

    // Save the workbook in xlsx format
    wb.Save(outDir + u"output_out.xlsx");

    std::cout << "Glow effect applied successfully!" << std::endl;

    Aspose::Cells::Cleanup();
}