تغيير قيم الضبط للشكل
Contents
[
Hide
]
يوفر Aspose.Cellsالشكل ، الهندسة ، الشكل ، الضبط ، القيم خاصية لإجراء تغييرات على نقاط الضبط مع الأشكال. في Microsoft Excel UI ، يتم عرض التعديلات كعقد ماسية صفراء. على سبيل المثال:
- مستطيل مدور لديه تعديل لتغيير القوس
- المثلث لديه تعديل لتغيير موقع النقطة
- شبه منحرف لديه تعديل لتغيير عرض الجزء العلوي
- تحتوي الأسهم على تعديلين لتغيير شكل الرأس والذيل
تشرح هذه المقالة استخدامالشكل ، الهندسة ، الشكل ، الضبط ، القيم خاصية لتغيير قيمة الضبط للأشكال المختلفة.
يوضح نموذج التعليمات البرمجية أدناه كيفية تغيير قيم الضبط للشكل.
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 | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create workbook object from source excel file | |
Workbook workbook = new Workbook(dataDir + "source.xlsx"); | |
// Access first worksheet | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Access first three shapes of the worksheet | |
Shape shape1 = worksheet.Shapes[0]; | |
Shape shape2 = worksheet.Shapes[1]; | |
Shape shape3 = worksheet.Shapes[2]; | |
// Change the adjustment values of the shapes | |
shape1.Geometry.ShapeAdjustValues[0].Value = 0.5d; | |
shape2.Geometry.ShapeAdjustValues[0].Value = 0.8d; | |
shape3.Geometry.ShapeAdjustValues[0].Value = 0.5d; | |
// Save the workbook | |
workbook.Save(dataDir + "output_out.xlsx"); |