تطبيق ورقة الأنماط المخصصة على Visio Diagram بلون الياقوت
Contents
[
Hide
]
Aspose.Diagram - تطبيق ورقة الأنماط المخصصة على Visio Diagram
لتطبيق ورقة أنماط مخصصة على Visio Diagram باستخدامAspose.Diagram Java لروبي ، ببساطة استدعاءApplyCustomStyleSheet وحدة. هنا يمكنك أن ترى رمز المثال.
كود روبي
بيانات_dir = File.dirname (File.dirname (File.dirname (File.dirname (__ملف__)))) + '/ بيانات /'
\ # إنشاء مثيل Diagram
diagram = Rjb :: import ('com.aspose.diagram.Diagram'). new (data_dir + "Drawing.vsd")
الأشكال = diagram.getPages (). getPage (0) .getShapes ()
أنا = 0
عندما أنا< shapes.getCount()
shape = shapes.get(i)
if shape.getNameU() == "Process"
source_shape = shape
break
end
i +=1
end
\# Find the required style sheet
stylesheets = diagram.getStyleSheets()
j = 0
while j < stylesheets.getCount()
stylesheet = stylesheets.get(j)
if stylesheet.getName() == "Basic"
custom_stylesheet = stylesheet
break
end
j +=1
end
if source_shape != nil && custom_stylesheet != nil
# Apply text style
source_shape.setTextStyle(custom_stylesheet)
# Apply fill style
source_shape.setFillStyle(custom_stylesheet)
# Apply line style
source_shape.setLineStyle(custom_stylesheet)
end
\# Save diagram
diagram.save(data_dir + "ApplyCustomStyleSheet.vdx", Rjb::import('com.aspose.diagram.SaveFileFormat').VDX)
puts "Applied custom stylesheet to a visio diagram."
قم بتنزيل كود التشغيل
تحميل**تطبيق ورقة أنماط مخصصة على Visio Diagram (Aspose.Diagram)**من أي من مواقع الترميز الاجتماعي المذكورة أدناه: