1.10.0.6 release
parent
f54c02cc2d
commit
e69fd0343a
23
ChangeLog
23
ChangeLog
|
@ -1,3 +1,26 @@
|
|||
25-MAY-2012: 1.10.0.6
|
||||
|
||||
- Snaps to bends if mxEdgeHandler.snapToTerminals is enabled [JavaScript]
|
||||
- Adds addPipe switch in mxPolyline, mxConnector shapes [JavaScript]
|
||||
- Adds mxGraph.zoomTo for setting absolute scale [JavaScript]
|
||||
- Fixes handling of hex color values and exceptions in mxUtils.parseColor [Java]
|
||||
- Adds caching for color parsing in mxGraphicsCanvas2D.parseColor [Java]
|
||||
- Scales dashPatterns with strokeWidth in mxGraphics2DCanvas.createStroke [Java]
|
||||
- Fixes parsing of dash patterns in mxGraphics2DCanvas.createStroke [Java]
|
||||
- Adds optional separator argument in mxUtils.getFloatArray [Java]
|
||||
- mxGraphView.validatePoints uses mxShape.boundingBox to compute graph bounds [JavaScript]
|
||||
- mxGraphView.createState initializes state regardless of rendering switch [JavaScript]
|
||||
- Adds optional rendering argument in mxCellRenderer.initialize [JavaScript]
|
||||
- Adds mxCylinder.addPipe switch for hit detection on path shapes [JavaScript]
|
||||
- Adds mxShape.boundingBox, update-/create-/augmentBoundingBox [JavaScript]
|
||||
- Fixes scrollbar size for scaled graphs in mxGraph.sizeDidChange [JavaScript]
|
||||
- Adds mxPath.scale, mxShape.vmlScale, fixes VML rendering precision [JavaScript]
|
||||
- Fixes shadow for non-filled stencils in mxStencilShape [JavaScript]
|
||||
- Fixes shadow stroke-width in mxConnector for SVG [JavaScript]
|
||||
- Adds optional force, rendering arguments in mxCellRenderer.redraw [JavaScript]
|
||||
- Fixes grouping of cells in negative coordinate space [Java,JavaScript]
|
||||
- Adds optional constrain argument in mxGraph.cellsAdded [Java,JavaScript]
|
||||
|
||||
21-MAY-2012: 1.10.0.5
|
||||
|
||||
- Adds mxText.getTableSize hook for measuring HTML markup [JavaScript]
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -15,7 +15,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
|
|||
|
||||
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxClient.Variables"></a>Variables</h3></div></div>
|
||||
|
||||
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxClient.VERSION"></a>VERSION</h3><div class=CBody><p>Contains the current version of the mxGraph library. The strings that communicate versions of mxGraph use the following format.</p><p>versionMajor.versionMinor.buildNumber.revisionNumber</p><p>Current version is 1.10.0.5.</p></div></div></div>
|
||||
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxClient.VERSION"></a>VERSION</h3><div class=CBody><p>Contains the current version of the mxGraph library. The strings that communicate versions of mxGraph use the following format.</p><p>versionMajor.versionMinor.buildNumber.revisionNumber</p><p>Current version is 1.10.0.6.</p></div></div></div>
|
||||
|
||||
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxClient.IS_IE"></a>IS_IE</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>IS_IE: navigator.userAgent.indexOf(</td><td class=PParameter nowrap>'MSIE'</td><td class=PAfterParameters nowrap>) ></td></tr></table></td></tr></table></blockquote><p>True if the current browser is Internet Explorer.</p></div></div></div>
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
|
|||
|
||||
|
||||
|
||||
<div id=Content><div class="CClass"><div class=CTopic id=MainTopic><h1 class=CTitle><a name="mxActor"></a>mxActor</h1><div class=CBody><p>Extends <a href="mxShape-js.html#mxShape" class=LClass id=link10 onMouseOver="ShowTip(event, 'tt1', 'link10')" onMouseOut="HideTip('tt1')">mxShape</a> to implement an actor shape. If a custom shape with one filled area is needed, then this shape’s <a href="#mxActor.redrawPath" class=LFunction id=link11 onMouseOver="ShowTip(event, 'tt9', 'link11')" onMouseOut="HideTip('tt9')">redrawPath</a> should be overridden.</p><h4 class=CHeading>Example</h4><blockquote><pre class="prettyprint">function SampleShape() { }
|
||||
<div id=Content><div class="CClass"><div class=CTopic id=MainTopic><h1 class=CTitle><a name="mxActor"></a>mxActor</h1><div class=CBody><p>Extends <a href="mxShape-js.html#mxShape" class=LClass id=link11 onMouseOver="ShowTip(event, 'tt1', 'link11')" onMouseOut="HideTip('tt1')">mxShape</a> to implement an actor shape. If a custom shape with one filled area is needed, then this shape’s <a href="#mxActor.redrawPath" class=LFunction id=link12 onMouseOver="ShowTip(event, 'tt10', 'link12')" onMouseOut="HideTip('tt10')">redrawPath</a> should be overridden.</p><h4 class=CHeading>Example</h4><blockquote><pre class="prettyprint">function SampleShape() { }
|
||||
|
||||
SampleShape.prototype = new mxActor();
|
||||
SampleShape.prototype.constructor = vsAseShape;
|
||||
|
@ -23,11 +23,11 @@ SampleShape.prototype.redrawPath = function(path, x, y, w, h)
|
|||
path.lineTo(w, h);
|
||||
// ...
|
||||
path.close();
|
||||
}</pre></blockquote><p>This shape is registered under <a href="../util/mxConstants-js.html#mxConstants.SHAPE_ACTOR" class=LVariable id=link12 onMouseOver="ShowTip(event, 'tt10', 'link12')" onMouseOut="HideTip('tt10')">mxConstants.SHAPE_ACTOR</a> in <a href="../view/mxCellRenderer-js.html#mxCellRenderer" class=LClass id=link13 onMouseOver="ShowTip(event, 'tt11', 'link13')" onMouseOut="HideTip('tt11')">mxCellRenderer</a>.</p><!--START_ND_SUMMARY--><div class=Summary><div class=STitle>Summary</div><div class=SBorder><table border=0 cellspacing=0 cellpadding=0 class=STable><tr class="SMain"><td class=SEntry><a href="#mxActor" >mxActor</a></td><td class=SDescription>Extends <a href="mxShape-js.html#mxShape" class=LClass id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">mxShape</a> to implement an actor shape. </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxActor.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxActor.mxActor" id=link2 onMouseOver="ShowTip(event, 'tt2', 'link2')" onMouseOut="HideTip('tt2')">mxActor</a></td><td class=SDescription>Constructs a new actor shape.</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxActor.Variables" >Variables</a></td><td class=SDescription></td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxActor.mixedModeHtml" id=link3 onMouseOver="ShowTip(event, 'tt3', 'link3')" onMouseOut="HideTip('tt3')">mixedModeHtml</a></td><td class=SDescription>Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.</td></tr><tr class="SVariable SIndent2"><td class=SEntry><a href="#mxActor.preferModeHtml" id=link4 onMouseOver="ShowTip(event, 'tt4', 'link4')" onMouseOut="HideTip('tt4')">preferModeHtml</a></td><td class=SDescription>Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxActor.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxActor.createVml" id=link5 onMouseOver="ShowTip(event, 'tt5', 'link5')" onMouseOut="HideTip('tt5')">createVml</a></td><td class=SDescription>Creates and returns the VML node(s) to represent this shape.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxActor.redrawVml" id=link6 onMouseOver="ShowTip(event, 'tt6', 'link6')" onMouseOut="HideTip('tt6')">redrawVml</a></td><td class=SDescription>Updates the VML node(s) to reflect the latest bounds and scale.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxActor.createSvg" id=link7 onMouseOver="ShowTip(event, 'tt7', 'link7')" onMouseOut="HideTip('tt7')">createSvg</a></td><td class=SDescription>Creates and returns the SVG node(s) to represent this shape.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxActor.redrawSvg" id=link8 onMouseOver="ShowTip(event, 'tt8', 'link8')" onMouseOut="HideTip('tt8')">redrawSvg</a></td><td class=SDescription>Updates the SVG node(s) to reflect the latest bounds and scale.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxActor.redrawPath" id=link9 onMouseOver="ShowTip(event, 'tt9', 'link9')" onMouseOut="HideTip('tt9')">redrawPath</a></td><td class=SDescription>Draws the path for this shape. </td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div>
|
||||
}</pre></blockquote><p>This shape is registered under <a href="../util/mxConstants-js.html#mxConstants.SHAPE_ACTOR" class=LVariable id=link13 onMouseOver="ShowTip(event, 'tt11', 'link13')" onMouseOut="HideTip('tt11')">mxConstants.SHAPE_ACTOR</a> in <a href="../view/mxCellRenderer-js.html#mxCellRenderer" class=LClass id=link14 onMouseOver="ShowTip(event, 'tt12', 'link14')" onMouseOut="HideTip('tt12')">mxCellRenderer</a>.</p><!--START_ND_SUMMARY--><div class=Summary><div class=STitle>Summary</div><div class=SBorder><table border=0 cellspacing=0 cellpadding=0 class=STable><tr class="SMain"><td class=SEntry><a href="#mxActor" >mxActor</a></td><td class=SDescription>Extends <a href="mxShape-js.html#mxShape" class=LClass id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">mxShape</a> to implement an actor shape. </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxActor.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxActor.mxActor" id=link2 onMouseOver="ShowTip(event, 'tt2', 'link2')" onMouseOut="HideTip('tt2')">mxActor</a></td><td class=SDescription>Constructs a new actor shape.</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxActor.Variables" >Variables</a></td><td class=SDescription></td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxActor.mixedModeHtml" id=link3 onMouseOver="ShowTip(event, 'tt3', 'link3')" onMouseOut="HideTip('tt3')">mixedModeHtml</a></td><td class=SDescription>Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.</td></tr><tr class="SVariable SIndent2"><td class=SEntry><a href="#mxActor.preferModeHtml" id=link4 onMouseOver="ShowTip(event, 'tt4', 'link4')" onMouseOut="HideTip('tt4')">preferModeHtml</a></td><td class=SDescription>Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.</td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxActor.vmlScale" id=link5 onMouseOver="ShowTip(event, 'tt5', 'link5')" onMouseOut="HideTip('tt5')">vmlScale</a></td><td class=SDescription>Renders VML with a scale of 2.</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxActor.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxActor.createVml" id=link6 onMouseOver="ShowTip(event, 'tt6', 'link6')" onMouseOut="HideTip('tt6')">createVml</a></td><td class=SDescription>Creates and returns the VML node(s) to represent this shape.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxActor.redrawVml" id=link7 onMouseOver="ShowTip(event, 'tt7', 'link7')" onMouseOut="HideTip('tt7')">redrawVml</a></td><td class=SDescription>Updates the VML node(s) to reflect the latest bounds and scale.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxActor.createSvg" id=link8 onMouseOver="ShowTip(event, 'tt8', 'link8')" onMouseOut="HideTip('tt8')">createSvg</a></td><td class=SDescription>Creates and returns the SVG node(s) to represent this shape.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxActor.redrawSvg" id=link9 onMouseOver="ShowTip(event, 'tt9', 'link9')" onMouseOut="HideTip('tt9')">redrawSvg</a></td><td class=SDescription>Updates the SVG node(s) to reflect the latest bounds and scale.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxActor.redrawPath" id=link10 onMouseOver="ShowTip(event, 'tt10', 'link10')" onMouseOut="HideTip('tt10')">redrawPath</a></td><td class=SDescription>Draws the path for this shape. </td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div>
|
||||
|
||||
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxActor.Functions"></a>Functions</h3></div></div>
|
||||
|
||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxActor.mxActor"></a>mxActor</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxActor(</td><td class=PParameter nowrap>bounds,</td></tr><tr><td></td><td class=PParameter nowrap>fill,</td></tr><tr><td></td><td class=PParameter nowrap>stroke,</td></tr><tr><td></td><td class=PParameter nowrap>strokewidth</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote><p>Constructs a new actor shape.</p><h4 class=CHeading>Parameters</h4><table border=0 cellspacing=0 cellpadding=0 class=CDescriptionList><tr><td class=CDLEntry>bounds</td><td class=CDLDescription><a href="../util/mxRectangle-js.html#mxRectangle" class=LClass id=link14 onMouseOver="ShowTip(event, 'tt12', 'link14')" onMouseOut="HideTip('tt12')">mxRectangle</a> that defines the bounds. This is stored in <a href="mxShape-js.html#mxShape.bounds" class=LVariable id=link15 onMouseOver="ShowTip(event, 'tt13', 'link15')" onMouseOut="HideTip('tt13')">mxShape.bounds</a>.</td></tr><tr><td class=CDLEntry>fill</td><td class=CDLDescription>String that defines the fill color. This is stored in <fill>.</td></tr><tr><td class=CDLEntry>stroke</td><td class=CDLDescription>String that defines the stroke color. This is stored in <stroke>.</td></tr><tr><td class=CDLEntry>strokewidth</td><td class=CDLDescription>Optional integer that defines the stroke width. Default is 1. This is stored in <strokewidth>.</td></tr></table></div></div></div>
|
||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxActor.mxActor"></a>mxActor</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxActor(</td><td class=PParameter nowrap>bounds,</td></tr><tr><td></td><td class=PParameter nowrap>fill,</td></tr><tr><td></td><td class=PParameter nowrap>stroke,</td></tr><tr><td></td><td class=PParameter nowrap>strokewidth</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote><p>Constructs a new actor shape.</p><h4 class=CHeading>Parameters</h4><table border=0 cellspacing=0 cellpadding=0 class=CDescriptionList><tr><td class=CDLEntry>bounds</td><td class=CDLDescription><a href="../util/mxRectangle-js.html#mxRectangle" class=LClass id=link15 onMouseOver="ShowTip(event, 'tt13', 'link15')" onMouseOut="HideTip('tt13')">mxRectangle</a> that defines the bounds. This is stored in <a href="mxShape-js.html#mxShape.bounds" class=LVariable id=link16 onMouseOver="ShowTip(event, 'tt14', 'link16')" onMouseOut="HideTip('tt14')">mxShape.bounds</a>.</td></tr><tr><td class=CDLEntry>fill</td><td class=CDLDescription>String that defines the fill color. This is stored in <fill>.</td></tr><tr><td class=CDLEntry>stroke</td><td class=CDLDescription>String that defines the stroke color. This is stored in <stroke>.</td></tr><tr><td class=CDLEntry>strokewidth</td><td class=CDLDescription>Optional integer that defines the stroke width. Default is 1. This is stored in <strokewidth>.</td></tr></table></div></div></div>
|
||||
|
||||
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxActor.Variables"></a>Variables</h3></div></div>
|
||||
|
||||
|
@ -35,6 +35,8 @@ SampleShape.prototype.redrawPath = function(path, x, y, w, h)
|
|||
|
||||
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxActor.preferModeHtml"></a>preferModeHtml</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.preferModeHtml</td></tr></table></blockquote><p>Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.</p></div></div></div>
|
||||
|
||||
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxActor.vmlScale"></a>vmlScale</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.vmlScale</td></tr></table></blockquote><p>Renders VML with a scale of 2.</p></div></div></div>
|
||||
|
||||
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxActor.Functions"></a>Functions</h3></div></div>
|
||||
|
||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxActor.createVml"></a>createVml</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.createVml = function()</td></tr></table></blockquote><p>Creates and returns the VML node(s) to represent this shape.</p></div></div></div>
|
||||
|
@ -45,7 +47,7 @@ SampleShape.prototype.redrawPath = function(path, x, y, w, h)
|
|||
|
||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxActor.redrawSvg"></a>redrawSvg</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.redrawSvg = function()</td></tr></table></blockquote><p>Updates the SVG node(s) to reflect the latest bounds and scale.</p></div></div></div>
|
||||
|
||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxActor.redrawPath"></a>redrawPath</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxActor.prototype.redrawPath = function(</td><td class=PParameter nowrap>path,</td></tr><tr><td></td><td class=PParameter nowrap>x,</td></tr><tr><td></td><td class=PParameter nowrap>y,</td></tr><tr><td></td><td class=PParameter nowrap>w,</td></tr><tr><td></td><td class=PParameter nowrap>h</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote><p>Draws the path for this shape. This method uses the <a href="../util/mxPath-js.html#mxPath" class=LClass id=link16 onMouseOver="ShowTip(event, 'tt14', 'link16')" onMouseOut="HideTip('tt14')">mxPath</a> abstraction to paint the shape for VML and SVG.</p></div></div></div>
|
||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxActor.redrawPath"></a>redrawPath</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxActor.prototype.redrawPath = function(</td><td class=PParameter nowrap>path,</td></tr><tr><td></td><td class=PParameter nowrap>x,</td></tr><tr><td></td><td class=PParameter nowrap>y,</td></tr><tr><td></td><td class=PParameter nowrap>w,</td></tr><tr><td></td><td class=PParameter nowrap>h</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote><p>Draws the path for this shape. This method uses the <a href="../util/mxPath-js.html#mxPath" class=LClass id=link17 onMouseOver="ShowTip(event, 'tt15', 'link17')" onMouseOut="HideTip('tt15')">mxPath</a> abstraction to paint the shape for VML and SVG.</p></div></div></div>
|
||||
|
||||
</div><!--Content-->
|
||||
|
||||
|
@ -61,7 +63,7 @@ HideAllBut([9], 13);// --></script></div><!--Menu-->
|
|||
|
||||
|
||||
<!--START_ND_TOOLTIPS-->
|
||||
<div class=CToolTip id="tt1"><div class=CClass>Base class for all shapes. </div></div><div class=CToolTip id="tt2"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxActor(</td><td class=PParameter nowrap>bounds,</td></tr><tr><td></td><td class=PParameter nowrap>fill,</td></tr><tr><td></td><td class=PParameter nowrap>stroke,</td></tr><tr><td></td><td class=PParameter nowrap>strokewidth</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Constructs a new actor shape.</div></div><div class=CToolTip id="tt3"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.mixedModeHtml</td></tr></table></blockquote>Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.</div></div><div class=CToolTip id="tt4"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.preferModeHtml</td></tr></table></blockquote>Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.</div></div><div class=CToolTip id="tt5"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.createVml = function()</td></tr></table></blockquote>Creates and returns the VML node(s) to represent this shape.</div></div><div class=CToolTip id="tt6"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.redrawVml = function()</td></tr></table></blockquote>Updates the VML node(s) to reflect the latest bounds and scale.</div></div><div class=CToolTip id="tt7"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.createSvg = function()</td></tr></table></blockquote>Creates and returns the SVG node(s) to represent this shape.</div></div><div class=CToolTip id="tt8"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.redrawSvg = function()</td></tr></table></blockquote>Updates the SVG node(s) to reflect the latest bounds and scale.</div></div><div class=CToolTip id="tt9"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxActor.prototype.redrawPath = function(</td><td class=PParameter nowrap>path,</td></tr><tr><td></td><td class=PParameter nowrap>x,</td></tr><tr><td></td><td class=PParameter nowrap>y,</td></tr><tr><td></td><td class=PParameter nowrap>w,</td></tr><tr><td></td><td class=PParameter nowrap>h</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Draws the path for this shape. </div></div><div class=CToolTip id="tt10"><div class=CVariable>Name under which mxActor is registered in mxCellRenderer. </div></div><div class=CToolTip id="tt11"><div class=CClass>Renders cells into a document object model. </div></div><div class=CToolTip id="tt12"><div class=CClass>Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.</div></div><div class=CToolTip id="tt13"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxShape.prototype.bounds</td></tr></table></blockquote>Holds the mxRectangle that specifies the bounds of this shape.</div></div><div class=CToolTip id="tt14"><div class=CClass>An abstraction for creating VML and SVG paths. </div></div><!--END_ND_TOOLTIPS-->
|
||||
<div class=CToolTip id="tt1"><div class=CClass>Base class for all shapes. </div></div><div class=CToolTip id="tt2"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxActor(</td><td class=PParameter nowrap>bounds,</td></tr><tr><td></td><td class=PParameter nowrap>fill,</td></tr><tr><td></td><td class=PParameter nowrap>stroke,</td></tr><tr><td></td><td class=PParameter nowrap>strokewidth</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Constructs a new actor shape.</div></div><div class=CToolTip id="tt3"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.mixedModeHtml</td></tr></table></blockquote>Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.</div></div><div class=CToolTip id="tt4"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.preferModeHtml</td></tr></table></blockquote>Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.</div></div><div class=CToolTip id="tt5"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.vmlScale</td></tr></table></blockquote>Renders VML with a scale of 2.</div></div><div class=CToolTip id="tt6"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.createVml = function()</td></tr></table></blockquote>Creates and returns the VML node(s) to represent this shape.</div></div><div class=CToolTip id="tt7"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.redrawVml = function()</td></tr></table></blockquote>Updates the VML node(s) to reflect the latest bounds and scale.</div></div><div class=CToolTip id="tt8"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.createSvg = function()</td></tr></table></blockquote>Creates and returns the SVG node(s) to represent this shape.</div></div><div class=CToolTip id="tt9"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxActor.prototype.redrawSvg = function()</td></tr></table></blockquote>Updates the SVG node(s) to reflect the latest bounds and scale.</div></div><div class=CToolTip id="tt10"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxActor.prototype.redrawPath = function(</td><td class=PParameter nowrap>path,</td></tr><tr><td></td><td class=PParameter nowrap>x,</td></tr><tr><td></td><td class=PParameter nowrap>y,</td></tr><tr><td></td><td class=PParameter nowrap>w,</td></tr><tr><td></td><td class=PParameter nowrap>h</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Draws the path for this shape. </div></div><div class=CToolTip id="tt11"><div class=CVariable>Name under which mxActor is registered in mxCellRenderer. </div></div><div class=CToolTip id="tt12"><div class=CClass>Renders cells into a document object model. </div></div><div class=CToolTip id="tt13"><div class=CClass>Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.</div></div><div class=CToolTip id="tt14"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxShape.prototype.bounds</td></tr></table></blockquote>Holds the mxRectangle that specifies the bounds of this shape.</div></div><div class=CToolTip id="tt15"><div class=CClass>An abstraction for creating VML and SVG paths. </div></div><!--END_ND_TOOLTIPS-->
|
||||
|
||||
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -11,20 +11,22 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
|
|||
|
||||
|
||||
|
||||
<div id=Content><div class="CClass"><div class=CTopic id=MainTopic><h1 class=CTitle><a name="mxDoubleEllipse"></a>mxDoubleEllipse</h1><div class=CBody><p>Extends <a href="mxShape-js.html#mxShape" class=LClass id=link12 onMouseOver="ShowTip(event, 'tt1', 'link12')" onMouseOut="HideTip('tt1')">mxShape</a> to implement a double ellipse shape. This shape is registered under <a href="../util/mxConstants-js.html#mxConstants.SHAPE_DOUBLE_ELLIPSE" class=LVariable id=link13 onMouseOver="ShowTip(event, 'tt12', 'link13')" onMouseOut="HideTip('tt12')">mxConstants.SHAPE_DOUBLE_ELLIPSE</a> in <a href="../view/mxCellRenderer-js.html#mxCellRenderer" class=LClass id=link14 onMouseOver="ShowTip(event, 'tt13', 'link14')" onMouseOut="HideTip('tt13')">mxCellRenderer</a>.</p><!--START_ND_SUMMARY--><div class=Summary><div class=STitle>Summary</div><div class=SBorder><table border=0 cellspacing=0 cellpadding=0 class=STable><tr class="SMain"><td class=SEntry><a href="#mxDoubleEllipse" >mxDoubleEllipse</a></td><td class=SDescription>Extends <a href="mxShape-js.html#mxShape" class=LClass id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">mxShape</a> to implement a double ellipse shape. </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxDoubleEllipse.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxDoubleEllipse.mxDoubleEllipse" id=link2 onMouseOver="ShowTip(event, 'tt2', 'link2')" onMouseOut="HideTip('tt2')">mxDoubleEllipse</a></td><td class=SDescription>Constructs a new ellipse shape.</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxDoubleEllipse.Variables" >Variables</a></td><td class=SDescription></td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxDoubleEllipse.vmlNodes" id=link3 onMouseOver="ShowTip(event, 'tt3', 'link3')" onMouseOut="HideTip('tt3')">vmlNodes</a></td><td class=SDescription>Adds local references to <a href="mxShape-js.html#mxShape.vmlNodes" class=LVariable id=link4 onMouseOver="ShowTip(event, 'tt4', 'link4')" onMouseOut="HideTip('tt4')">mxShape.vmlNodes</a>.</td></tr><tr class="SVariable SIndent2"><td class=SEntry><a href="#mxDoubleEllipse.mixedModeHtml" id=link5 onMouseOver="ShowTip(event, 'tt5', 'link5')" onMouseOut="HideTip('tt5')">mixedModeHtml</a></td><td class=SDescription>Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.</td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxDoubleEllipse.preferModeHtml" id=link6 onMouseOver="ShowTip(event, 'tt6', 'link6')" onMouseOut="HideTip('tt6')">preferModeHtml</a></td><td class=SDescription>Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxDoubleEllipse.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxDoubleEllipse.createVml" id=link7 onMouseOver="ShowTip(event, 'tt7', 'link7')" onMouseOut="HideTip('tt7')">createVml</a></td><td class=SDescription>Creates and returns the VML node to represent this shape.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxDoubleEllipse.redrawVml" id=link8 onMouseOver="ShowTip(event, 'tt8', 'link8')" onMouseOut="HideTip('tt8')">redrawVml</a></td><td class=SDescription>Updates the VML node(s) to reflect the latest bounds and scale.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxDoubleEllipse.createSvg" id=link9 onMouseOver="ShowTip(event, 'tt9', 'link9')" onMouseOut="HideTip('tt9')">createSvg</a></td><td class=SDescription>Creates and returns the SVG node(s) to represent this shape.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxDoubleEllipse.redrawSvg" id=link10 onMouseOver="ShowTip(event, 'tt10', 'link10')" onMouseOut="HideTip('tt10')">redrawSvg</a></td><td class=SDescription>Updates the SVG node(s) to reflect the latest bounds and scale.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxDoubleEllipse.updateSvgNode" id=link11 onMouseOver="ShowTip(event, 'tt11', 'link11')" onMouseOut="HideTip('tt11')">updateSvgNode</a></td><td class=SDescription>Updates the given node to reflect the new <bounds> and <scale>.</td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div>
|
||||
<div id=Content><div class="CClass"><div class=CTopic id=MainTopic><h1 class=CTitle><a name="mxDoubleEllipse"></a>mxDoubleEllipse</h1><div class=CBody><p>Extends <a href="mxShape-js.html#mxShape" class=LClass id=link13 onMouseOver="ShowTip(event, 'tt1', 'link13')" onMouseOut="HideTip('tt1')">mxShape</a> to implement a double ellipse shape. This shape is registered under <a href="../util/mxConstants-js.html#mxConstants.SHAPE_DOUBLE_ELLIPSE" class=LVariable id=link14 onMouseOver="ShowTip(event, 'tt13', 'link14')" onMouseOut="HideTip('tt13')">mxConstants.SHAPE_DOUBLE_ELLIPSE</a> in <a href="../view/mxCellRenderer-js.html#mxCellRenderer" class=LClass id=link15 onMouseOver="ShowTip(event, 'tt14', 'link15')" onMouseOut="HideTip('tt14')">mxCellRenderer</a>.</p><!--START_ND_SUMMARY--><div class=Summary><div class=STitle>Summary</div><div class=SBorder><table border=0 cellspacing=0 cellpadding=0 class=STable><tr class="SMain"><td class=SEntry><a href="#mxDoubleEllipse" >mxDoubleEllipse</a></td><td class=SDescription>Extends <a href="mxShape-js.html#mxShape" class=LClass id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">mxShape</a> to implement a double ellipse shape. </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxDoubleEllipse.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxDoubleEllipse.mxDoubleEllipse" id=link2 onMouseOver="ShowTip(event, 'tt2', 'link2')" onMouseOut="HideTip('tt2')">mxDoubleEllipse</a></td><td class=SDescription>Constructs a new ellipse shape.</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxDoubleEllipse.Variables" >Variables</a></td><td class=SDescription></td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxDoubleEllipse.vmlNodes" id=link3 onMouseOver="ShowTip(event, 'tt3', 'link3')" onMouseOut="HideTip('tt3')">vmlNodes</a></td><td class=SDescription>Adds local references to <a href="mxShape-js.html#mxShape.vmlNodes" class=LVariable id=link4 onMouseOver="ShowTip(event, 'tt4', 'link4')" onMouseOut="HideTip('tt4')">mxShape.vmlNodes</a>.</td></tr><tr class="SVariable SIndent2"><td class=SEntry><a href="#mxDoubleEllipse.mixedModeHtml" id=link5 onMouseOver="ShowTip(event, 'tt5', 'link5')" onMouseOut="HideTip('tt5')">mixedModeHtml</a></td><td class=SDescription>Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.</td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxDoubleEllipse.preferModeHtml" id=link6 onMouseOver="ShowTip(event, 'tt6', 'link6')" onMouseOut="HideTip('tt6')">preferModeHtml</a></td><td class=SDescription>Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.</td></tr><tr class="SVariable SIndent2"><td class=SEntry><a href="#mxDoubleEllipse.vmlScale" id=link7 onMouseOver="ShowTip(event, 'tt7', 'link7')" onMouseOut="HideTip('tt7')">vmlScale</a></td><td class=SDescription>Renders VML with a scale of 2.</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxDoubleEllipse.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxDoubleEllipse.createVml" id=link8 onMouseOver="ShowTip(event, 'tt8', 'link8')" onMouseOut="HideTip('tt8')">createVml</a></td><td class=SDescription>Creates and returns the VML node to represent this shape.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxDoubleEllipse.redrawVml" id=link9 onMouseOver="ShowTip(event, 'tt9', 'link9')" onMouseOut="HideTip('tt9')">redrawVml</a></td><td class=SDescription>Updates the VML node(s) to reflect the latest bounds and scale.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxDoubleEllipse.createSvg" id=link10 onMouseOver="ShowTip(event, 'tt10', 'link10')" onMouseOut="HideTip('tt10')">createSvg</a></td><td class=SDescription>Creates and returns the SVG node(s) to represent this shape.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxDoubleEllipse.redrawSvg" id=link11 onMouseOver="ShowTip(event, 'tt11', 'link11')" onMouseOut="HideTip('tt11')">redrawSvg</a></td><td class=SDescription>Updates the SVG node(s) to reflect the latest bounds and scale.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxDoubleEllipse.updateSvgNode" id=link12 onMouseOver="ShowTip(event, 'tt12', 'link12')" onMouseOut="HideTip('tt12')">updateSvgNode</a></td><td class=SDescription>Updates the given node to reflect the new <bounds> and <scale>.</td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div>
|
||||
|
||||
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxDoubleEllipse.Functions"></a>Functions</h3></div></div>
|
||||
|
||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxDoubleEllipse.mxDoubleEllipse"></a>mxDoubleEllipse</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxDoubleEllipse(</td><td class=PParameter nowrap>bounds,</td></tr><tr><td></td><td class=PParameter nowrap>fill,</td></tr><tr><td></td><td class=PParameter nowrap>stroke,</td></tr><tr><td></td><td class=PParameter nowrap>strokewidth</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote><p>Constructs a new ellipse shape.</p><h4 class=CHeading>Parameters</h4><table border=0 cellspacing=0 cellpadding=0 class=CDescriptionList><tr><td class=CDLEntry>bounds</td><td class=CDLDescription><a href="../util/mxRectangle-js.html#mxRectangle" class=LClass id=link15 onMouseOver="ShowTip(event, 'tt14', 'link15')" onMouseOut="HideTip('tt14')">mxRectangle</a> that defines the bounds. This is stored in <a href="mxShape-js.html#mxShape.bounds" class=LVariable id=link16 onMouseOver="ShowTip(event, 'tt15', 'link16')" onMouseOut="HideTip('tt15')">mxShape.bounds</a>.</td></tr><tr><td class=CDLEntry>fill</td><td class=CDLDescription>String that defines the fill color. This is stored in <fill>.</td></tr><tr><td class=CDLEntry>stroke</td><td class=CDLDescription>String that defines the stroke color. This is stored in <stroke>.</td></tr><tr><td class=CDLEntry>strokewidth</td><td class=CDLDescription>Optional integer that defines the stroke width. Default is 1. This is stored in <strokewidth>.</td></tr></table></div></div></div>
|
||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxDoubleEllipse.mxDoubleEllipse"></a>mxDoubleEllipse</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxDoubleEllipse(</td><td class=PParameter nowrap>bounds,</td></tr><tr><td></td><td class=PParameter nowrap>fill,</td></tr><tr><td></td><td class=PParameter nowrap>stroke,</td></tr><tr><td></td><td class=PParameter nowrap>strokewidth</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote><p>Constructs a new ellipse shape.</p><h4 class=CHeading>Parameters</h4><table border=0 cellspacing=0 cellpadding=0 class=CDescriptionList><tr><td class=CDLEntry>bounds</td><td class=CDLDescription><a href="../util/mxRectangle-js.html#mxRectangle" class=LClass id=link16 onMouseOver="ShowTip(event, 'tt15', 'link16')" onMouseOut="HideTip('tt15')">mxRectangle</a> that defines the bounds. This is stored in <a href="mxShape-js.html#mxShape.bounds" class=LVariable id=link17 onMouseOver="ShowTip(event, 'tt16', 'link17')" onMouseOut="HideTip('tt16')">mxShape.bounds</a>.</td></tr><tr><td class=CDLEntry>fill</td><td class=CDLDescription>String that defines the fill color. This is stored in <fill>.</td></tr><tr><td class=CDLEntry>stroke</td><td class=CDLDescription>String that defines the stroke color. This is stored in <stroke>.</td></tr><tr><td class=CDLEntry>strokewidth</td><td class=CDLDescription>Optional integer that defines the stroke width. Default is 1. This is stored in <strokewidth>.</td></tr></table></div></div></div>
|
||||
|
||||
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxDoubleEllipse.Variables"></a>Variables</h3></div></div>
|
||||
|
||||
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxDoubleEllipse.vmlNodes"></a>vmlNodes</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.vmlNodes</td></tr></table></blockquote><p>Adds local references to <a href="mxShape-js.html#mxShape.vmlNodes" class=LVariable id=link17 onMouseOver="ShowTip(event, 'tt4', 'link17')" onMouseOut="HideTip('tt4')">mxShape.vmlNodes</a>.</p></div></div></div>
|
||||
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxDoubleEllipse.vmlNodes"></a>vmlNodes</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.vmlNodes</td></tr></table></blockquote><p>Adds local references to <a href="mxShape-js.html#mxShape.vmlNodes" class=LVariable id=link18 onMouseOver="ShowTip(event, 'tt4', 'link18')" onMouseOut="HideTip('tt4')">mxShape.vmlNodes</a>.</p></div></div></div>
|
||||
|
||||
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxDoubleEllipse.mixedModeHtml"></a>mixedModeHtml</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.mixedModeHtml</td></tr></table></blockquote><p>Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.</p></div></div></div>
|
||||
|
||||
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxDoubleEllipse.preferModeHtml"></a>preferModeHtml</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.preferModeHtml</td></tr></table></blockquote><p>Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.</p></div></div></div>
|
||||
|
||||
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxDoubleEllipse.vmlScale"></a>vmlScale</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.vmlScale</td></tr></table></blockquote><p>Renders VML with a scale of 2.</p></div></div></div>
|
||||
|
||||
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxDoubleEllipse.Functions"></a>Functions</h3></div></div>
|
||||
|
||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxDoubleEllipse.createVml"></a>createVml</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.createVml = function()</td></tr></table></blockquote><p>Creates and returns the VML node to represent this shape.</p></div></div></div>
|
||||
|
@ -51,7 +53,7 @@ HideAllBut([9], 13);// --></script></div><!--Menu-->
|
|||
|
||||
|
||||
<!--START_ND_TOOLTIPS-->
|
||||
<div class=CToolTip id="tt1"><div class=CClass>Base class for all shapes. </div></div><div class=CToolTip id="tt2"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxDoubleEllipse(</td><td class=PParameter nowrap>bounds,</td></tr><tr><td></td><td class=PParameter nowrap>fill,</td></tr><tr><td></td><td class=PParameter nowrap>stroke,</td></tr><tr><td></td><td class=PParameter nowrap>strokewidth</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Constructs a new ellipse shape.</div></div><div class=CToolTip id="tt3"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.vmlNodes</td></tr></table></blockquote>Adds local references to mxShape.vmlNodes.</div></div><div class=CToolTip id="tt4"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxShape.prototype.vmlNodes</td></tr></table></blockquote>Array if VML node names to fix in IE8 standards mode.</div></div><div class=CToolTip id="tt5"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.mixedModeHtml</td></tr></table></blockquote>Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.</div></div><div class=CToolTip id="tt6"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.preferModeHtml</td></tr></table></blockquote>Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.</div></div><div class=CToolTip id="tt7"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.createVml = function()</td></tr></table></blockquote>Creates and returns the VML node to represent this shape.</div></div><div class=CToolTip id="tt8"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.redrawVml = function()</td></tr></table></blockquote>Updates the VML node(s) to reflect the latest bounds and scale.</div></div><div class=CToolTip id="tt9"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.createSvg = function()</td></tr></table></blockquote>Creates and returns the SVG node(s) to represent this shape.</div></div><div class=CToolTip id="tt10"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.redrawSvg = function()</td></tr></table></blockquote>Updates the SVG node(s) to reflect the latest bounds and scale.</div></div><div class=CToolTip id="tt11"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxDoubleEllipse.prototype.updateSvgNode = function(</td><td class=PParameter nowrap>node,</td></tr><tr><td></td><td class=PParameter nowrap>inset</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Updates the given node to reflect the new bounds and scale.</div></div><div class=CToolTip id="tt12"><div class=CVariable>Name under which mxDoubleEllipse is registered in mxCellRenderer. </div></div><div class=CToolTip id="tt13"><div class=CClass>Renders cells into a document object model. </div></div><div class=CToolTip id="tt14"><div class=CClass>Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.</div></div><div class=CToolTip id="tt15"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxShape.prototype.bounds</td></tr></table></blockquote>Holds the mxRectangle that specifies the bounds of this shape.</div></div><!--END_ND_TOOLTIPS-->
|
||||
<div class=CToolTip id="tt1"><div class=CClass>Base class for all shapes. </div></div><div class=CToolTip id="tt2"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxDoubleEllipse(</td><td class=PParameter nowrap>bounds,</td></tr><tr><td></td><td class=PParameter nowrap>fill,</td></tr><tr><td></td><td class=PParameter nowrap>stroke,</td></tr><tr><td></td><td class=PParameter nowrap>strokewidth</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Constructs a new ellipse shape.</div></div><div class=CToolTip id="tt3"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.vmlNodes</td></tr></table></blockquote>Adds local references to mxShape.vmlNodes.</div></div><div class=CToolTip id="tt4"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxShape.prototype.vmlNodes</td></tr></table></blockquote>Array if VML node names to fix in IE8 standards mode.</div></div><div class=CToolTip id="tt5"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.mixedModeHtml</td></tr></table></blockquote>Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.</div></div><div class=CToolTip id="tt6"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.preferModeHtml</td></tr></table></blockquote>Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.</div></div><div class=CToolTip id="tt7"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.vmlScale</td></tr></table></blockquote>Renders VML with a scale of 2.</div></div><div class=CToolTip id="tt8"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.createVml = function()</td></tr></table></blockquote>Creates and returns the VML node to represent this shape.</div></div><div class=CToolTip id="tt9"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.redrawVml = function()</td></tr></table></blockquote>Updates the VML node(s) to reflect the latest bounds and scale.</div></div><div class=CToolTip id="tt10"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.createSvg = function()</td></tr></table></blockquote>Creates and returns the SVG node(s) to represent this shape.</div></div><div class=CToolTip id="tt11"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxDoubleEllipse.prototype.redrawSvg = function()</td></tr></table></blockquote>Updates the SVG node(s) to reflect the latest bounds and scale.</div></div><div class=CToolTip id="tt12"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxDoubleEllipse.prototype.updateSvgNode = function(</td><td class=PParameter nowrap>node,</td></tr><tr><td></td><td class=PParameter nowrap>inset</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Updates the given node to reflect the new bounds and scale.</div></div><div class=CToolTip id="tt13"><div class=CVariable>Name under which mxDoubleEllipse is registered in mxCellRenderer. </div></div><div class=CToolTip id="tt14"><div class=CClass>Renders cells into a document object model. </div></div><div class=CToolTip id="tt15"><div class=CClass>Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.</div></div><div class=CToolTip id="tt16"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxShape.prototype.bounds</td></tr></table></blockquote>Holds the mxRectangle that specifies the bounds of this shape.</div></div><!--END_ND_TOOLTIPS-->
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -11,11 +11,17 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
|
|||
|
||||
|
||||
|
||||
<div id=Content><div class="CClass"><div class=CTopic id=MainTopic><h1 class=CTitle><a name="mxPolyline"></a>mxPolyline</h1><div class=CBody><p>Extends <a href="mxShape-js.html#mxShape" class=LClass id=link7 onMouseOver="ShowTip(event, 'tt1', 'link7')" onMouseOut="HideTip('tt1')">mxShape</a> to implement a polyline (a line with multiple points). This shape is registered under <mxConstants.SHAPE_POLYLINE> in <a href="../view/mxCellRenderer-js.html#mxCellRenderer" class=LClass id=link8 onMouseOver="ShowTip(event, 'tt7', 'link8')" onMouseOut="HideTip('tt7')">mxCellRenderer</a>.</p><!--START_ND_SUMMARY--><div class=Summary><div class=STitle>Summary</div><div class=SBorder><table border=0 cellspacing=0 cellpadding=0 class=STable><tr class="SMain"><td class=SEntry><a href="#mxPolyline" >mxPolyline</a></td><td class=SDescription>Extends <a href="mxShape-js.html#mxShape" class=LClass id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">mxShape</a> to implement a polyline (a line with multiple points). </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxPolyline.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxPolyline.mxPolyline" id=link2 onMouseOver="ShowTip(event, 'tt2', 'link2')" onMouseOut="HideTip('tt2')">mxPolyline</a></td><td class=SDescription>Constructs a new polyline shape.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxPolyline.create" id=link3 onMouseOver="ShowTip(event, 'tt3', 'link3')" onMouseOut="HideTip('tt3')">create</a></td><td class=SDescription>Override to create HTML regardless of gradient and rounded property.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxPolyline.redrawVml" id=link4 onMouseOver="ShowTip(event, 'tt4', 'link4')" onMouseOut="HideTip('tt4')">redrawVml</a></td><td class=SDescription>Overrides the method to update the bounds if they have not been assigned.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxPolyline.createSvg" id=link5 onMouseOver="ShowTip(event, 'tt5', 'link5')" onMouseOut="HideTip('tt5')">createSvg</a></td><td class=SDescription>Creates and returns the SVG node(s) to represent this shape.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxPolyline.redrawSvg" id=link6 onMouseOver="ShowTip(event, 'tt6', 'link6')" onMouseOut="HideTip('tt6')">redrawSvg</a></td><td class=SDescription>Updates the SVG node(s) to reflect the latest bounds and scale.</td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div>
|
||||
<div id=Content><div class="CClass"><div class=CTopic id=MainTopic><h1 class=CTitle><a name="mxPolyline"></a>mxPolyline</h1><div class=CBody><p>Extends <a href="mxShape-js.html#mxShape" class=LClass id=link8 onMouseOver="ShowTip(event, 'tt1', 'link8')" onMouseOut="HideTip('tt1')">mxShape</a> to implement a polyline (a line with multiple points). This shape is registered under <mxConstants.SHAPE_POLYLINE> in <a href="../view/mxCellRenderer-js.html#mxCellRenderer" class=LClass id=link9 onMouseOver="ShowTip(event, 'tt8', 'link9')" onMouseOut="HideTip('tt8')">mxCellRenderer</a>.</p><!--START_ND_SUMMARY--><div class=Summary><div class=STitle>Summary</div><div class=SBorder><table border=0 cellspacing=0 cellpadding=0 class=STable><tr class="SMain"><td class=SEntry><a href="#mxPolyline" >mxPolyline</a></td><td class=SDescription>Extends <a href="mxShape-js.html#mxShape" class=LClass id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">mxShape</a> to implement a polyline (a line with multiple points). </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxPolyline.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxPolyline.mxPolyline" id=link2 onMouseOver="ShowTip(event, 'tt2', 'link2')" onMouseOut="HideTip('tt2')">mxPolyline</a></td><td class=SDescription>Constructs a new polyline shape.</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxPolyline.Variables" >Variables</a></td><td class=SDescription></td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxPolyline.addPipe" id=link3 onMouseOver="ShowTip(event, 'tt3', 'link3')" onMouseOut="HideTip('tt3')">addPipe</a></td><td class=SDescription>Specifies if a SVG path should be created around any path to increase the tolerance for mouse events. </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxPolyline.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxPolyline.create" id=link4 onMouseOver="ShowTip(event, 'tt4', 'link4')" onMouseOut="HideTip('tt4')">create</a></td><td class=SDescription>Override to create HTML regardless of gradient and rounded property.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxPolyline.redrawVml" id=link5 onMouseOver="ShowTip(event, 'tt5', 'link5')" onMouseOut="HideTip('tt5')">redrawVml</a></td><td class=SDescription>Overrides the method to update the bounds if they have not been assigned.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxPolyline.createSvg" id=link6 onMouseOver="ShowTip(event, 'tt6', 'link6')" onMouseOut="HideTip('tt6')">createSvg</a></td><td class=SDescription>Creates and returns the SVG node(s) to represent this shape.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxPolyline.redrawSvg" id=link7 onMouseOver="ShowTip(event, 'tt7', 'link7')" onMouseOut="HideTip('tt7')">redrawSvg</a></td><td class=SDescription>Updates the SVG node(s) to reflect the latest bounds and scale.</td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div>
|
||||
|
||||
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxPolyline.Functions"></a>Functions</h3></div></div>
|
||||
|
||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxPolyline.mxPolyline"></a>mxPolyline</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxPolyline(</td><td class=PParameter nowrap>points,</td></tr><tr><td></td><td class=PParameter nowrap>stroke,</td></tr><tr><td></td><td class=PParameter nowrap>strokewidth</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote><p>Constructs a new polyline shape.</p><h4 class=CHeading>Parameters</h4><table border=0 cellspacing=0 cellpadding=0 class=CDescriptionList><tr><td class=CDLEntry>points</td><td class=CDLDescription>Array of <a href="../util/mxPoint-js.html#mxPoint" class=LClass id=link9 onMouseOver="ShowTip(event, 'tt8', 'link9')" onMouseOut="HideTip('tt8')">mxPoints</a> that define the points. This is stored in <a href="mxShape-js.html#mxShape.points" class=LVariable id=link10 onMouseOver="ShowTip(event, 'tt9', 'link10')" onMouseOut="HideTip('tt9')">mxShape.points</a>.</td></tr><tr><td class=CDLEntry>stroke</td><td class=CDLDescription>String that defines the stroke color. Default is ‘black’. This is stored in <stroke>.</td></tr><tr><td class=CDLEntry>strokewidth</td><td class=CDLDescription>Optional integer that defines the stroke width. Default is 1. This is stored in <strokewidth>.</td></tr></table></div></div></div>
|
||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxPolyline.mxPolyline"></a>mxPolyline</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxPolyline(</td><td class=PParameter nowrap>points,</td></tr><tr><td></td><td class=PParameter nowrap>stroke,</td></tr><tr><td></td><td class=PParameter nowrap>strokewidth</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote><p>Constructs a new polyline shape.</p><h4 class=CHeading>Parameters</h4><table border=0 cellspacing=0 cellpadding=0 class=CDescriptionList><tr><td class=CDLEntry>points</td><td class=CDLDescription>Array of <a href="../util/mxPoint-js.html#mxPoint" class=LClass id=link10 onMouseOver="ShowTip(event, 'tt9', 'link10')" onMouseOut="HideTip('tt9')">mxPoints</a> that define the points. This is stored in <a href="mxShape-js.html#mxShape.points" class=LVariable id=link11 onMouseOver="ShowTip(event, 'tt10', 'link11')" onMouseOut="HideTip('tt10')">mxShape.points</a>.</td></tr><tr><td class=CDLEntry>stroke</td><td class=CDLDescription>String that defines the stroke color. Default is ‘black’. This is stored in <stroke>.</td></tr><tr><td class=CDLEntry>strokewidth</td><td class=CDLDescription>Optional integer that defines the stroke width. Default is 1. This is stored in <strokewidth>.</td></tr></table></div></div></div>
|
||||
|
||||
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxPolyline.Variables"></a>Variables</h3></div></div>
|
||||
|
||||
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxPolyline.addPipe"></a>addPipe</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxPolyline.prototype.addPipe</td></tr></table></blockquote><p>Specifies if a SVG path should be created around any path to increase the tolerance for mouse events. Default is false since this shape is filled.</p></div></div></div>
|
||||
|
||||
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxPolyline.Functions"></a>Functions</h3></div></div>
|
||||
|
||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxPolyline.create"></a>create</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxPolyline.prototype.create = function()</td></tr></table></blockquote><p>Override to create HTML regardless of gradient and rounded property.</p></div></div></div>
|
||||
|
||||
|
@ -39,7 +45,7 @@ HideAllBut([9], 13);// --></script></div><!--Menu-->
|
|||
|
||||
|
||||
<!--START_ND_TOOLTIPS-->
|
||||
<div class=CToolTip id="tt1"><div class=CClass>Base class for all shapes. </div></div><div class=CToolTip id="tt2"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxPolyline(</td><td class=PParameter nowrap>points,</td></tr><tr><td></td><td class=PParameter nowrap>stroke,</td></tr><tr><td></td><td class=PParameter nowrap>strokewidth</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Constructs a new polyline shape.</div></div><div class=CToolTip id="tt3"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxPolyline.prototype.create = function()</td></tr></table></blockquote>Override to create HTML regardless of gradient and rounded property.</div></div><div class=CToolTip id="tt4"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxPolyline.prototype.redrawVml = function()</td></tr></table></blockquote>Overrides the method to update the bounds if they have not been assigned.</div></div><div class=CToolTip id="tt5"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxPolyline.prototype.createSvg = function()</td></tr></table></blockquote>Creates and returns the SVG node(s) to represent this shape.</div></div><div class=CToolTip id="tt6"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxPolyline.prototype.redrawSvg = function()</td></tr></table></blockquote>Updates the SVG node(s) to reflect the latest bounds and scale.</div></div><div class=CToolTip id="tt7"><div class=CClass>Renders cells into a document object model. </div></div><div class=CToolTip id="tt8"><div class=CClass>Implements a 2-dimensional vector with double precision coordinates.</div></div><div class=CToolTip id="tt9"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxShape.prototype.points</td></tr></table></blockquote>Holds the array of mxPoints that specify the points of this shape.</div></div><!--END_ND_TOOLTIPS-->
|
||||
<div class=CToolTip id="tt1"><div class=CClass>Base class for all shapes. </div></div><div class=CToolTip id="tt2"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxPolyline(</td><td class=PParameter nowrap>points,</td></tr><tr><td></td><td class=PParameter nowrap>stroke,</td></tr><tr><td></td><td class=PParameter nowrap>strokewidth</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Constructs a new polyline shape.</div></div><div class=CToolTip id="tt3"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxPolyline.prototype.addPipe</td></tr></table></blockquote>Specifies if a SVG path should be created around any path to increase the tolerance for mouse events. </div></div><div class=CToolTip id="tt4"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxPolyline.prototype.create = function()</td></tr></table></blockquote>Override to create HTML regardless of gradient and rounded property.</div></div><div class=CToolTip id="tt5"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxPolyline.prototype.redrawVml = function()</td></tr></table></blockquote>Overrides the method to update the bounds if they have not been assigned.</div></div><div class=CToolTip id="tt6"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxPolyline.prototype.createSvg = function()</td></tr></table></blockquote>Creates and returns the SVG node(s) to represent this shape.</div></div><div class=CToolTip id="tt7"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxPolyline.prototype.redrawSvg = function()</td></tr></table></blockquote>Updates the SVG node(s) to reflect the latest bounds and scale.</div></div><div class=CToolTip id="tt8"><div class=CClass>Renders cells into a document object model. </div></div><div class=CToolTip id="tt9"><div class=CClass>Implements a 2-dimensional vector with double precision coordinates.</div></div><div class=CToolTip id="tt10"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxShape.prototype.points</td></tr></table></blockquote>Holds the array of mxPoints that specify the points of this shape.</div></div><!--END_ND_TOOLTIPS-->
|
||||
|
||||
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -11,9 +11,9 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
|
|||
|
||||
|
||||
|
||||
<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! · 0-9 · <a href="General.html#A">A</a> · <a href="General2.html#B">B</a> · <a href="General3.html#C">C</a> · <a href="General4.html#D">D</a> · <a href="General5.html#E">E</a> · <a href="General6.html#F">F</a> · <a href="General7.html#G">G</a> · <a href="General8.html#H">H</a> · <a href="General9.html#I">I</a> · <a href="General10.html#J">J</a> · <a href="General10.html#K">K</a> · <a href="General10.html#L">L</a> · <a href="General11.html#M">M</a> · <a href="General12.html#N">N</a> · <a href="General12.html#O">O</a> · <a href="General13.html#P">P</a> · <a href="#Q">Q</a> · <a href="General15.html#R">R</a> · <a href="General16.html#S">S</a> · <a href="General17.html#T">T</a> · <a href="General18.html#U">U</a> · <a href="General19.html#V">V</a> · <a href="General20.html#W">W</a> · <a href="General20.html#X">X</a> · <a href="General20.html#Y">Y</a> · <a href="General20.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="Q"></a>Q</td><td></td></tr><tr><td class=ISymbolPrefix id=IOnlySymbolPrefix> </td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxPath-js.html#mxPath.quadTo" id=link2319 onMouseOver="ShowTip(event, 'tt2316', 'link2319')" onMouseOut="HideTip('tt2316')" class=IParent>mxPath</a><a href="../files/util/mxSvgCanvas2D-js.html#mxSvgCanvas2D.quadTo" id=link2320 onMouseOver="ShowTip(event, 'tt2317', 'link2320')" onMouseOut="HideTip('tt2317')" class=IParent>mxSvgCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2321 onMouseOver="ShowTip(event, 'tt2318', 'link2321')" onMouseOut="HideTip('tt2318')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
|
||||
<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! · 0-9 · <a href="General.html#A">A</a> · <a href="General2.html#B">B</a> · <a href="General3.html#C">C</a> · <a href="General4.html#D">D</a> · <a href="General5.html#E">E</a> · <a href="General6.html#F">F</a> · <a href="General7.html#G">G</a> · <a href="General8.html#H">H</a> · <a href="General9.html#I">I</a> · <a href="General10.html#J">J</a> · <a href="General10.html#K">K</a> · <a href="General10.html#L">L</a> · <a href="General11.html#M">M</a> · <a href="General12.html#N">N</a> · <a href="General12.html#O">O</a> · <a href="General13.html#P">P</a> · <a href="#Q">Q</a> · <a href="General15.html#R">R</a> · <a href="General16.html#S">S</a> · <a href="General17.html#T">T</a> · <a href="General18.html#U">U</a> · <a href="General19.html#V">V</a> · <a href="General20.html#W">W</a> · <a href="General20.html#X">X</a> · <a href="General20.html#Y">Y</a> · <a href="General20.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="Q"></a>Q</td><td></td></tr><tr><td class=ISymbolPrefix id=IOnlySymbolPrefix> </td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxPath-js.html#mxPath.quadTo" id=link2325 onMouseOver="ShowTip(event, 'tt2322', 'link2325')" onMouseOut="HideTip('tt2322')" class=IParent>mxPath</a><a href="../files/util/mxSvgCanvas2D-js.html#mxSvgCanvas2D.quadTo" id=link2326 onMouseOver="ShowTip(event, 'tt2323', 'link2326')" onMouseOut="HideTip('tt2323')" class=IParent>mxSvgCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2327 onMouseOver="ShowTip(event, 'tt2324', 'link2327')" onMouseOut="HideTip('tt2324')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
|
||||
<!--START_ND_TOOLTIPS-->
|
||||
<div class=CToolTip id="tt2316"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxPath.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x,</td></tr><tr><td></td><td class=PParameter nowrap>y</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Draws a quadratic Bézier curve from the current point to (x, y) using (x1, y1) as the control point.</div></div><div class=CToolTip id="tt2317"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>quadTo: function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><div class=CToolTip id="tt2318"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>quadTo: function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><!--END_ND_TOOLTIPS-->
|
||||
<div class=CToolTip id="tt2322"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxPath.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x,</td></tr><tr><td></td><td class=PParameter nowrap>y</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Draws a quadratic Bézier curve from the current point to (x, y) using (x1, y1) as the control point.</div></div><div class=CToolTip id="tt2323"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>quadTo: function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><div class=CToolTip id="tt2324"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>quadTo: function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><!--END_ND_TOOLTIPS-->
|
||||
|
||||
</div><!--Index-->
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -11,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
|
|||
|
||||
|
||||
|
||||
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_zoom><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoom" target=_parent class=ISymbol>zoom</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomActual><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomActual" target=_parent class=ISymbol>zoomActual</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomIn><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomIn" target=_parent class=ISymbol>zoomIn</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomOut><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomOut" target=_parent class=ISymbol>zoomOut</a>, <span class=IParent>mxGraph</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
|
||||
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_zoom><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoom" target=_parent class=ISymbol>zoom</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomActual><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomActual" target=_parent class=ISymbol>zoomActual</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomIn><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomIn" target=_parent class=ISymbol>zoomIn</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomOut><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomOut" target=_parent class=ISymbol>zoomOut</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomTo><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomTo" target=_parent class=ISymbol>zoomTo</a>, <span class=IParent>mxGraph</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
|
||||
document.getElementById("Loading").style.display="none";
|
||||
document.getElementById("NoMatches").style.display="none";
|
||||
var searchResults = new SearchResults("searchResults", "HTML");
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -11,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
|
|||
|
||||
|
||||
|
||||
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_zIndex><div class=IEntry><a href="javascript:searchResults.Toggle('SR_zIndex')" class=ISymbol>zIndex</a><div class=ISubIndex><a href="../files/util/mxPopupMenu-js.html#mxPopupMenu.zIndex" target=_parent class=IParent>mxPopupMenu</a><a href="../files/handler/mxTooltipHandler-js.html#mxTooltipHandler.zIndex" target=_parent class=IParent>mxTooltipHandler</a></div></div></div><div class=SRResult id=SR_zoom><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoom" target=_parent class=ISymbol>zoom</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomActual><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomActual" target=_parent class=ISymbol>zoomActual</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomFactor><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomFactor" target=_parent class=ISymbol>zoomFactor</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomIn><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomIn" target=_parent class=ISymbol>zoomIn</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomOut><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomOut" target=_parent class=ISymbol>zoomOut</a>, <span class=IParent>mxGraph</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
|
||||
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_zIndex><div class=IEntry><a href="javascript:searchResults.Toggle('SR_zIndex')" class=ISymbol>zIndex</a><div class=ISubIndex><a href="../files/util/mxPopupMenu-js.html#mxPopupMenu.zIndex" target=_parent class=IParent>mxPopupMenu</a><a href="../files/handler/mxTooltipHandler-js.html#mxTooltipHandler.zIndex" target=_parent class=IParent>mxTooltipHandler</a></div></div></div><div class=SRResult id=SR_zoom><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoom" target=_parent class=ISymbol>zoom</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomActual><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomActual" target=_parent class=ISymbol>zoomActual</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomFactor><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomFactor" target=_parent class=ISymbol>zoomFactor</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomIn><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomIn" target=_parent class=ISymbol>zoomIn</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomOut><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomOut" target=_parent class=ISymbol>zoomOut</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomTo><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomTo" target=_parent class=ISymbol>zoomTo</a>, <span class=IParent>mxGraph</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
|
||||
document.getElementById("Loading").style.display="none";
|
||||
document.getElementById("NoMatches").style.display="none";
|
||||
var searchResults = new SearchResults("searchResults", "HTML");
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -11,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
|
|||
|
||||
|
||||
|
||||
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_backgroundImage><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.backgroundImage" target=_parent class=ISymbol>backgroundImage</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_basePath><div class=IEntry><a href="../files/mxClient-js.html#mxClient.basePath" target=_parent class=ISymbol>basePath</a>, <span class=IParent>mxClient</span></div></div><div class=SRResult id=SR_baseUrl><div class=IEntry><a href="../files/util/mxUrlConverter-js.html#mxUrlConverter.baseUrl" target=_parent class=ISymbol>baseUrl</a>, <span class=IParent>mxUrlConverter</span></div></div><div class=SRResult id=SR_BEFORE_undADD_undVERTEX><div class=IEntry><a href="../files/util/mxEvent-js.html#mxEvent.BEFORE_ADD_VERTEX" target=_parent class=ISymbol>BEFORE_ADD_VERTEX</a>, <span class=IParent>mxEvent</span></div></div><div class=SRResult id=SR_BEFORE_undUNDO><div class=IEntry><a href="../files/util/mxEvent-js.html#mxEvent.BEFORE_UNDO" target=_parent class=ISymbol>BEFORE_UNDO</a>, <span class=IParent>mxEvent</span></div></div><div class=SRResult id=SR_BEGIN_undUPDATE><div class=IEntry><a href="../files/util/mxEvent-js.html#mxEvent.BEGIN_UPDATE" target=_parent class=ISymbol>BEGIN_UPDATE</a>, <span class=IParent>mxEvent</span></div></div><div class=SRResult id=SR_bends><div class=IEntry><a href="../files/handler/mxEdgeHandler-js.html#mxEdgeHandler.bends" target=_parent class=ISymbol>bends</a>, <span class=IParent>mxEdgeHandler</span></div></div><div class=SRResult id=SR_bgNodes><div class=IEntry><a href="../files/shape/mxStencil-js.html#mxStencil.bgNodes" target=_parent class=ISymbol>bgNodes</a>, <span class=IParent>mxStencil</span></div></div><div class=SRResult id=SR_binary><div class=IEntry><a href="../files/util/mxXmlRequest-js.html#mxXmlRequest.binary" target=_parent class=ISymbol>binary</a>, <span class=IParent>mxXmlRequest</span></div></div><div class=SRResult id=SR_body><div class=IEntry><a href="../files/util/mxForm-js.html#mxForm.body" target=_parent class=ISymbol>body</a>, <span class=IParent>mxForm</span></div></div><div class=SRResult id=SR_border><div class=IEntry><a href="javascript:searchResults.Toggle('SR_border')" class=ISymbol>border</a><div class=ISubIndex><a href="../files/view/mxGraph-js.html#mxGraph.border" target=_parent class=IParent>mxGraph</a><a href="../files/view/mxOutline-js.html#mxOutline.border" target=_parent class=IParent>mxOutline</a><a href="../files/util/mxPanningManager-js.html#mxPanningManager.border" target=_parent class=IParent>mxPanningManager</a><a href="../files/layout/mxPartitionLayout-js.html#mxPartitionLayout.border" target=_parent class=IParent>mxPartitionLayout</a><a href="../files/view/mxPrintPreview-js.html#mxPrintPreview.border" target=_parent class=IParent>mxPrintPreview</a><a href="../files/layout/mxStackLayout-js.html#mxStackLayout.border" target=_parent class=IParent>mxStackLayout</a></div></div></div><div class=SRResult id=SR_borderColor><div class=IEntry><a href="../files/view/mxPrintPreview-js.html#mxPrintPreview.borderColor" target=_parent class=ISymbol>borderColor</a>, <span class=IParent>mxPrintPreview</span></div></div><div class=SRResult id=SR_bounds><div class=IEntry><a href="../files/shape/mxShape-js.html#mxShape.bounds" target=_parent class=ISymbol>bounds</a>, <span class=IParent>mxShape</span></div></div><div class=SRResult id=SR_bubbling><div class=IEntry><a href="../files/view/mxLayoutManager-js.html#mxLayoutManager.bubbling" target=_parent class=ISymbol>bubbling</a>, <span class=IParent>mxLayoutManager</span></div></div><div class=SRResult id=SR_buffer><div class=IEntry><a href="../files/util/mxLog-js.html#mxLog.buffer" target=_parent class=ISymbol>buffer</a>, <span class=IParent>mxLog</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
|
||||
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_backgroundImage><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.backgroundImage" target=_parent class=ISymbol>backgroundImage</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_basePath><div class=IEntry><a href="../files/mxClient-js.html#mxClient.basePath" target=_parent class=ISymbol>basePath</a>, <span class=IParent>mxClient</span></div></div><div class=SRResult id=SR_baseUrl><div class=IEntry><a href="../files/util/mxUrlConverter-js.html#mxUrlConverter.baseUrl" target=_parent class=ISymbol>baseUrl</a>, <span class=IParent>mxUrlConverter</span></div></div><div class=SRResult id=SR_BEFORE_undADD_undVERTEX><div class=IEntry><a href="../files/util/mxEvent-js.html#mxEvent.BEFORE_ADD_VERTEX" target=_parent class=ISymbol>BEFORE_ADD_VERTEX</a>, <span class=IParent>mxEvent</span></div></div><div class=SRResult id=SR_BEFORE_undUNDO><div class=IEntry><a href="../files/util/mxEvent-js.html#mxEvent.BEFORE_UNDO" target=_parent class=ISymbol>BEFORE_UNDO</a>, <span class=IParent>mxEvent</span></div></div><div class=SRResult id=SR_BEGIN_undUPDATE><div class=IEntry><a href="../files/util/mxEvent-js.html#mxEvent.BEGIN_UPDATE" target=_parent class=ISymbol>BEGIN_UPDATE</a>, <span class=IParent>mxEvent</span></div></div><div class=SRResult id=SR_bends><div class=IEntry><a href="../files/handler/mxEdgeHandler-js.html#mxEdgeHandler.bends" target=_parent class=ISymbol>bends</a>, <span class=IParent>mxEdgeHandler</span></div></div><div class=SRResult id=SR_bgNodes><div class=IEntry><a href="../files/shape/mxStencil-js.html#mxStencil.bgNodes" target=_parent class=ISymbol>bgNodes</a>, <span class=IParent>mxStencil</span></div></div><div class=SRResult id=SR_binary><div class=IEntry><a href="../files/util/mxXmlRequest-js.html#mxXmlRequest.binary" target=_parent class=ISymbol>binary</a>, <span class=IParent>mxXmlRequest</span></div></div><div class=SRResult id=SR_body><div class=IEntry><a href="../files/util/mxForm-js.html#mxForm.body" target=_parent class=ISymbol>body</a>, <span class=IParent>mxForm</span></div></div><div class=SRResult id=SR_border><div class=IEntry><a href="javascript:searchResults.Toggle('SR_border')" class=ISymbol>border</a><div class=ISubIndex><a href="../files/view/mxGraph-js.html#mxGraph.border" target=_parent class=IParent>mxGraph</a><a href="../files/view/mxOutline-js.html#mxOutline.border" target=_parent class=IParent>mxOutline</a><a href="../files/util/mxPanningManager-js.html#mxPanningManager.border" target=_parent class=IParent>mxPanningManager</a><a href="../files/layout/mxPartitionLayout-js.html#mxPartitionLayout.border" target=_parent class=IParent>mxPartitionLayout</a><a href="../files/view/mxPrintPreview-js.html#mxPrintPreview.border" target=_parent class=IParent>mxPrintPreview</a><a href="../files/layout/mxStackLayout-js.html#mxStackLayout.border" target=_parent class=IParent>mxStackLayout</a></div></div></div><div class=SRResult id=SR_borderColor><div class=IEntry><a href="../files/view/mxPrintPreview-js.html#mxPrintPreview.borderColor" target=_parent class=ISymbol>borderColor</a>, <span class=IParent>mxPrintPreview</span></div></div><div class=SRResult id=SR_boundingBox><div class=IEntry><a href="../files/shape/mxShape-js.html#mxShape.boundingBox" target=_parent class=ISymbol>boundingBox</a>, <span class=IParent>mxShape</span></div></div><div class=SRResult id=SR_bounds><div class=IEntry><a href="../files/shape/mxShape-js.html#mxShape.bounds" target=_parent class=ISymbol>bounds</a>, <span class=IParent>mxShape</span></div></div><div class=SRResult id=SR_bubbling><div class=IEntry><a href="../files/view/mxLayoutManager-js.html#mxLayoutManager.bubbling" target=_parent class=ISymbol>bubbling</a>, <span class=IParent>mxLayoutManager</span></div></div><div class=SRResult id=SR_buffer><div class=IEntry><a href="../files/util/mxLog-js.html#mxLog.buffer" target=_parent class=ISymbol>buffer</a>, <span class=IParent>mxLog</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
|
||||
document.getElementById("Loading").style.display="none";
|
||||
document.getElementById("NoMatches").style.display="none";
|
||||
var searchResults = new SearchResults("searchResults", "HTML");
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -8,7 +8,7 @@
|
|||
<h1>mxGraph User Manual – JavaScript Client</h1>
|
||||
<br/>
|
||||
<br/>
|
||||
<p>mxGraph Version 1.10.0.5 – 21. May 2012</p>
|
||||
<p>mxGraph Version 1.10.0.6 – 25. May 2012</p>
|
||||
<p>Copyright (c) JGraph Ltd 2006-2012</p>
|
||||
<br/>
|
||||
<p>All rights reserved. No part of this publication may be
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<h1>JGraphX (JGraph 6) User Manual</h1>
|
||||
<br/>
|
||||
<br/>
|
||||
<p>JGraphX Version 1.10.0.5 – 21. May 2012</p>
|
||||
<p>JGraphX Version 1.10.0.6 – 25. May 2012</p>
|
||||
<p>Copyright (c) JGraph Ltd 2006-2012</p>
|
||||
<br/>
|
||||
<p>All rights reserved. No part of this publication may be
|
||||
|
|
|
@ -78,7 +78,7 @@
|
|||
<tr><td class="indexkey"><a class="el" href="classcom_1_1mxgraph_1_1mxUtils.html">com::mxgraph::mxUtils</a></td><td class="indexvalue">Contains various helper methods for use with <a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html" title="Implements a graph object that allows to create diagrams from a graph model and stylesheet...">mxGraph</a> </td></tr>
|
||||
</table>
|
||||
</div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:16 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:53 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxBasicCanvas.html#ab95273a90d8165c4925b4141754bc730">Translate</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxBasicCanvas.html">com::mxgraph::mxBasicCanvas</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxBasicCanvas.html#aa71888f9cebf04ac84e71c302f4124f8">translate</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxBasicCanvas.html">com::mxgraph::mxBasicCanvas</a></td><td><code> [protected]</code></td></tr>
|
||||
</table></div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:17 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:53 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -312,7 +312,7 @@ Inheritance diagram for com::mxgraph::mxBasicCanvas:</div>
|
|||
<li>src/canvas/mxBasicCanvas.cs</li>
|
||||
</ul>
|
||||
</div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:17 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:53 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -76,7 +76,7 @@
|
|||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCell.html#ac5c3eb4463bdcef39e0bc28a71647e49">visible</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCell.html">com::mxgraph::mxCell</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCell.html#a4ff3745efccdf976c50c60440110384e">Visible</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCell.html">com::mxgraph::mxCell</a></td><td></td></tr>
|
||||
</table></div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:18 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:54 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -1256,7 +1256,7 @@ Inheritance diagram for com::mxgraph::mxCell:</div>
|
|||
<li>src/model/mxCell.cs</li>
|
||||
</ul>
|
||||
</div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:18 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:54 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -69,7 +69,7 @@
|
|||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxObjectCodec.html#abc3bef1feb53dc34ed9e8ba93da5edd1">WriteComplexAttribute</a>(mxCodec enc, Object obj, string attr, Object value, XmlNode node)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxObjectCodec.html">com::mxgraph::mxObjectCodec</a></td><td><code> [inline, protected]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxObjectCodec.html#a7831f956126ef0b5da4920824d9b9bb5">WritePrimitiveAttribute</a>(mxCodec enc, Object obj, string attr, Object value, XmlNode node)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxObjectCodec.html">com::mxgraph::mxObjectCodec</a></td><td><code> [inline, protected]</code></td></tr>
|
||||
</table></div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:18 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:53 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -73,7 +73,7 @@ Inheritance diagram for com::mxgraph::mxCellCodec:</div>
|
|||
<li>src/io/mxCellCodec.cs</li>
|
||||
</ul>
|
||||
</div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:18 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:53 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellPath.html#a8308de65cdb622585ffdf7a5cb05a8a8">PATH_SEPARATOR</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellPath.html">com::mxgraph::mxCellPath</a></td><td><code> [static]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellPath.html#ad5059bd5081b1a2f127eb95cc63b51dd">Resolve</a>(mxICell root, string path)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellPath.html">com::mxgraph::mxCellPath</a></td><td><code> [inline, static]</code></td></tr>
|
||||
</table></div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:18 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:54 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -157,7 +157,7 @@
|
|||
<li>src/model/mxCellPath.cs</li>
|
||||
</ul>
|
||||
</div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:18 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:54 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer.html#afc487aac0fb7931ae14c2e0c0d62704b">CreateImage</a>(mxGraph graph, Object[] cells, double scale, Color?background, bool antiAlias, mxRectangle clip, mxGdiCanvas graphicsCanvas)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer.html">com::mxgraph::mxCellRenderer</a></td><td><code> [inline, static]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer.html#a2008e95a7cd828b21771613316fe8f37">DrawCells</a>(mxGraph graph, Object[] cells, double scale, mxRectangle clip, CanvasFactory factory)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer.html">com::mxgraph::mxCellRenderer</a></td><td><code> [inline, static]</code></td></tr>
|
||||
</table></div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:18 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:54 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -212,7 +212,7 @@
|
|||
<li>src/utils/mxCellRenderer.cs</li>
|
||||
</ul>
|
||||
</div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:18 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:54 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
<h1>com::mxgraph::mxCellRenderer::CanvasFactory Member List</h1>This is the complete list of members for <a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html">com::mxgraph::mxCellRenderer::CanvasFactory</a>, including all inherited members.<table>
|
||||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html#acae5f43ac3665c8cd4b4d22c555bca75">CreateCanvas</a>(int width, int height)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html">com::mxgraph::mxCellRenderer::CanvasFactory</a></td><td><code> [pure virtual]</code></td></tr>
|
||||
</table></div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:18 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:54 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -85,7 +85,7 @@ Inheritance diagram for com::mxgraph::mxCellRenderer::CanvasFactory:</div>
|
|||
<li>src/utils/mxCellRenderer.cs</li>
|
||||
</ul>
|
||||
</div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:18 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:54 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html#ab7ce28796bb23a7bc25e99255f7faa02">graphicsCanvas</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html">com::mxgraph::mxCellRenderer::ImageCanvasFactory</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html#ad81144814ab6cdc9664eb28cd63f8373">ImageCanvasFactory</a>(mxGdiCanvas graphicsCanvas, Color?background, bool antiAlias)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html">com::mxgraph::mxCellRenderer::ImageCanvasFactory</a></td><td><code> [inline]</code></td></tr>
|
||||
</table></div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:18 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:54 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -184,7 +184,7 @@ Inheritance diagram for com::mxgraph::mxCellRenderer::ImageCanvasFactory:</div>
|
|||
<li>src/utils/mxCellRenderer.cs</li>
|
||||
</ul>
|
||||
</div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:18 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:54 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html#a67b180bcd4e2e691c9a0c7ed38c16c38">Y</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html">com::mxgraph::mxPoint</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html#a48641b42a2187e4d6fedca61c359be77">y</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html">com::mxgraph::mxPoint</a></td><td><code> [protected]</code></td></tr>
|
||||
</table></div>
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 21 08:06:18 2012 for mxGraph by
|
||||
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri May 25 10:15:54 2012 for mxGraph by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
|
||||
</body>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue