📄 boxattrs.js
字号:
exampleText = "When in the Course of human events, it becomes necessary for one people to dissolve the political bands which have connected them with another, and to assume among the powers of the earth, the separate and equal station to which the Laws of Nature and of Nature's God entitle them, a decent respect to the opinions of mankind requires that they should declare the causes which impel them to the separation."isc.VStack.create({ID:"outerBox", left:220, top:20, border:"4px solid gray", members:[ isc.HTMLFlow.create({ ID:"textBox", width:240, contents:exampleText, border: "8px solid slateblue", padding: 10, margin: 4 })]}).draw(); // draw immediately, so the sliders can manipulate this box immediatelyisc.Slider.create({ minValue:0, maxValue:10, showRange:false, labelWidth:10, title:"Margin", value:4, valueChanged: "textBox.setMargin(value); textBox.markForRedraw();"})isc.Slider.create({ minValue:0, maxValue:10, showRange:false, labelWidth:10, title:"Padding", value:10, left:60, valueChanged: "textBox.setPadding(value); textBox.markForRedraw();"})isc.Slider.create({ minValue:0, maxValue:10, showRange:false, labelWidth:10, title:"Border", value:8, left:120, valueChanged: function () { textBox.setBorder(this.value + 'px solid slateblue'); textBox.markForRedraw(); }})
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -