在 Ruby 中添加对动态网格和连接点的支持
Contents
[
Hide
]
Aspose.Diagram - 添加对动态网格和连接点的支持
要添加对动态网格和连接点的支持,请使用Aspose.Diagram Java 红宝石 只需调用添加动态网格和连接点模块。在这里您可以看到示例代码。
红宝石代码
data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
\# Create instance of Diagram
diagram = Rjb::import('com.aspose.diagram.Diagram').new(data_dir + "Drawing.vsd")
\# get window object by index
window = diagram.getWindows().get(0)
\# check dynamic grid option
window.setDynamicGridEnabled(1)
\# check connection points option
window.setShowConnectionPoints(1)
\# Save as VDX
diagram.save(data_dir + "AddDynamicGridsAndConnectionPoints.vsx", Rjb::import('com.aspose.diagram.SaveFileFormat').VSX)
puts "Added Support of Dynamic Grids and Connection Points in the Visio Drawings."
下载运行代码
下载**添加对动态网格和连接点的支持 (Aspose.Diagram)**来自以下任何社交编码网站: