Tabnine Logo
CTTransform2D
Code IndexAdd Tabnine to your IDE (free)

How to use
CTTransform2D
in
org.docx4j.dml

Best Java code snippets using org.docx4j.dml.CTTransform2D (Showing top 11 results out of 315)

origin: plutext/docx4j

/**
 * Create an instance of {@link CTTransform2D }
 * 
 */
public CTTransform2D createCTTransform2D() {
  return new CTTransform2D();
}
origin: plutext/docx4j

Box b = new Box(xfrm.getOff().getX(), xfrm.getOff().getY(),
    xfrm.getExt().getCx(), xfrm.getExt().getCy() );
if (xfrm.getRot()!=0) {
  b.rotate(xfrm.getRot());
if (xfrm.isFlipH() ) {
  b.flipH();
if (xfrm.isFlipV() ) {
  b.flipV();
origin: com.haulmont.yarg/yarg

CTTransform2D transform2D = new CTTransform2D();
transform2D.setOff(new CTPoint2D());
transform2D.setExt(new CTPositiveSize2D());
shapeProperties.setXfrm(transform2D);
shapeProperties.setPrstGeom(new CTPresetGeometry2D());
origin: plutext/docx4j-ImportXHTML

ext.setCy(741680);
xfrm.setExt(ext);
xfrm.setOff(off);
off.setX(1524000);
off.setY(1397000);
origin: plutext/docx4j

converter.pic.getSpPr().getXfrm().getExt());
origin: plutext/docx4j

CTPoint2D offset = converter.pic.getSpPr().getXfrm().getOff();
Dimensions xy = converter.readDimensions( offset.getX(), offset.getY() );
origin: cuba-platform/yarg

CTTransform2D transform2D = new CTTransform2D();
transform2D.setOff(new CTPoint2D());
transform2D.setExt(new CTPositiveSize2D());
shapeProperties.setXfrm(transform2D);
shapeProperties.setPrstGeom(new CTPresetGeometry2D());
origin: org.docx4j/docx4j

converter.pic.getSpPr().getXfrm().getExt());
origin: org.docx4j/docx4j

CTPoint2D offset = converter.pic.getSpPr().getXfrm().getOff();
Dimensions xy = converter.readDimensions( offset.getX(), offset.getY() );
origin: org.docx4j/docx4j

Box b = new Box(xfrm.getOff().getX(), xfrm.getOff().getY(),
    xfrm.getExt().getCx(), xfrm.getExt().getCy() );
if (xfrm.getRot()!=0) {
  b.rotate(xfrm.getRot());
if (xfrm.isFlipH() ) {
  b.flipH();
if (xfrm.isFlipV() ) {
  b.flipV();
origin: org.docx4j/docx4j

/**
 * Create an instance of {@link CTTransform2D }
 * 
 */
public CTTransform2D createCTTransform2D() {
  return new CTTransform2D();
}
org.docx4j.dmlCTTransform2D

Javadoc

Java class for CT_Transform2D complex type.

The following schema fragment specifies the expected content contained within this class.

 
<complexType name="CT_Transform2D"> 
<complexContent> 
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 
<sequence> 
<element name="off" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Point2D" minOccurs="0"/> 
<element name="ext" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PositiveSize2D" minOccurs="0"/> 
</sequence> 
<attribute name="rot" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Angle" default="0" /> 
<attribute name="flipH" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> 
<attribute name="flipV" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> 
</restriction> 
</complexContent> 
</complexType> 

Most used methods

  • <init>
  • setExt
    Sets the value of the ext property.
  • setOff
    Sets the value of the off property.
  • getExt
    Gets the value of the ext property.
  • getOff
    Gets the value of the off property.
  • getRot
    Gets the value of the rot property.
  • isFlipH
    Gets the value of the flipH property.
  • isFlipV
    Gets the value of the flipV property.

Popular in Java

  • Updating database using SQL prepared statement
  • notifyDataSetChanged (ArrayAdapter)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSystemService (Context)
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • Socket (java.net)
    Provides a client-side TCP socket.
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • JTextField (javax.swing)
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now