?? text.java
字號:
package com.mc.svg.shape.basicshape;
import org.w3c.dom.Document;
import com.mc.svg.SVGCanvas;
import com.mc.svg.shape.AbstractShape;
public class Text extends AbstractShape {
public Text(Document doc,String text) {
this.doc = doc;
root = doc.createElementNS(SVGCanvas.svgNS, "text");
root.setTextContent(text);
}
public Text(Document doc) {
this.doc = doc;
root = doc.createElementNS(SVGCanvas.svgNS, "text");
}
public void setStyle(String style){
root.setAttributeNS(null,"style",style);
//fill: #000; font-size: 24px
}
public void setText(String text){
root.setTextContent(text);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -