إيجاد الموقع المطلق للشكل داخل ورقة العمل باستخدام Node.js عبر C++
Contents
[
Hide
]
أحيانًا، تحتاج إلى معرفة الموقع المطلق لشكل في ورقة العمل. توفر Aspose.Cells for Node.js via C++ الخاصيتين Shape.getLeftToCorner() وShape.getTopToCorner() لهذا الغرض. تعيد هذه الخصائص الموقع المطلق للشكل داخل ورقة العمل بالبكسل.
يعرض الكود العيني التالي الموضع المطلق لأول شكل في ورقة العمل بالبكسل. يعرض الكود العيني الإخراج التالي على وحدة التحكم:
Absolute Position of this Shape is (320 , 183)
const path = require("path");
const AsposeCells = require("aspose.cells.node");
// The path to the documents directory.
const dataDir = path.join(__dirname, "data");
// Load the sample Excel file inside the workbook object
const workbook = new AsposeCells.Workbook(path.join(dataDir, "sample.xlsx"));
// Access the first worksheet
const worksheet = workbook.getWorksheets().get(0);
// Access the first shape inside the worksheet
const shape = worksheet.getShapes().get(0);
// Displays the absolute position of the shape
console.log(`Absolute Position of this Shape is (${shape.getLeftToCorner()} , ${shape.getTopToCorner()})`);