تأمين علامة WordArt المائية
Contents
[
Hide
]
تسمح واجهات برمجة التطبيقات Aspose.Cells بإضافة علامات مائية لـ WordArt على ورقة العمل بطريقة تجعل WordArt كائنًا يمكن نقله ووضعه في ورقة العمل. من الممكن أيضًا قفل عنصر WordArt لأي تفاعل مثل التحرير والحركة والاختيار. تشرح هذه المقالة استخدامShape.setLockedProperty طريقة لقفل بعض جوانب العلامة المائية.
تأمين علامة WordArt المائية
تسمح واجهات برمجة التطبيقات Aspose.Cells بقفل جوانب معينة من العلامة المائية بحيث يمكن تقييد تفاعل المستخدم أو حظره تمامًا. يوضح مقتطف الكود التالي استخدام Aspose.Cells for Java API لإنشاء علامة مائية لكل ورقة عمل في جدول البيانات المحمل وتحديد قفل العلامة المائية وحركتها وتحريرها وإعادة تحجيمها.
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-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getDataDir(LockWordArtWatermark.class); | |
// Instantiate a new Workbook | |
Workbook workbook = new Workbook(); | |
// Get the first default sheet | |
Worksheet sheet = workbook.getWorksheets().get(0); | |
// Add Watermark | |
Shape wordart = sheet.getShapes().addTextEffect(MsoPresetTextEffect.TEXT_EFFECT_1, "CONFIDENTIAL", | |
"Arial Black", 50, false, true, 18, 8, 1, 1, 130, 800); | |
// Get the fill format of the word art | |
FillFormat wordArtFormat = wordart.getFill(); | |
// Set the color | |
wordArtFormat.setOneColorGradient(Color.getRed(), 0.2, GradientStyleType.HORIZONTAL, 2); | |
// Set the transparency | |
wordArtFormat.setTransparency(0.9); | |
// Make the line invisible | |
wordart.setHasLine(false); | |
// Lock Shape Aspects | |
wordart.setLocked(true); | |
wordart.setLockedProperty(ShapeLockType.SELECTION, true); | |
wordart.setLockedProperty(ShapeLockType.SHAPE_TYPE, true); | |
wordart.setLockedProperty(ShapeLockType.MOVE, true); | |
wordart.setLockedProperty(ShapeLockType.RESIZE, true); | |
wordart.setLockedProperty(ShapeLockType.TEXT, true); | |
// Save the file | |
workbook.save(dataDir + "output.xls"); |