1

我通过移动模型来调整纸张大小:

paper.on('cell:pointermove', 
function(cellView, evt, x, y) { 
    if((x+cellView.model.prop('size/width'))>=650 &&(y+cellView.model.prop('size/height'))>=200)
    paper.setDimensions(x+cellView.model.prop('size/width'), y+cellView.model.prop('size/height'));
}

有什么办法可以改变纸张的属性element.prop(properties)吗?

4

2 回答 2

3

您可以使用 和 获取论文的width/ 。Paper 是一个视图,而不是一个模型,因此它没有 ///方法,但是如果您愿意,您可以像存储任何其他对象一样始终将属性存储到它:heightpaper.options.widthpaper.options.heightset()get()prop()attr()paper.foo = 'bar'

于 2015-01-02T21:02:38.610 回答
0

你为什么不直接打电话paper.fitToContent()

于 2019-10-25T07:17:25.903 回答