Author: jghali
Date: Sat Nov 17 19:50:45 2018
New Revision: 22760
URL: http://scribus.net/websvn/listing.php?repname=Scribus&sc=1&rev=22760
Log:
Improvements to scripterapi-setobjprop.html: typo fixes, functions in
alphabetical order...
Modified:
trunk/Scribus/doc/de/scripterapi-setobjprop.html
trunk/Scribus/doc/en/scripterapi-setobjprop.html
trunk/Scribus/doc/fr/scripterapi-setobjprop.html
trunk/Scribus/doc/it/scripterapi-setobjprop.html
Modified: trunk/Scribus/doc/de/scripterapi-setobjprop.html
URL:
http://scribus.net/websvn/diff.php?repname=Scribus&rev=22760&path=/trunk/Scribus/doc/de/scripterapi-setobjprop.html
==============================================================================
--- trunk/Scribus/doc/de/scripterapi-setobjprop.html (original)
+++ trunk/Scribus/doc/de/scripterapi-setobjprop.html Sat Nov 17 19:50:45 2018
@@ -18,6 +18,10 @@
<p>Loads the picture "picture" into the image frame "name". If "name" is not
given the currently selected item is used.</p>
<p>May raise <a
href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> if the
target frame is not an image frame</p></dd></dt>
+<dt><a name="-scaleImage"><strong>scaleImage</strong></a>(...)</dt>
+<dd><code>scaleImage(x, y [, "name"])</code>
+<p><b>Do not use this command since it no longer works. Use setImageScale
instead.</b></p></dd>
+
<dt><a name="-setCornerRadius"><strong>setCornerRadius</strong></a>(...)</dt>
<dd><code>setCornerRadius(radius, ["name"])</code>
<p>Sets the corner radius of the object "name". The radius is expressed in
points regardless of page units, and must be an integer. If "name" is not given
the currently selected item is used.</p>
@@ -29,7 +33,7 @@
<dt><a name="-setFillBlendmode"><strong>setFillBlendmode</strong>(...)</a></dt>
<dd><code>setFillBlendmode(blendmode, ["name"])</code>
-<p>Sets the fill blendmode of the object "name" to blendmode is the name of
one of the defined colors. If "name" is not given the currently selected item
is used.</p></dd>
+<p>Sets the fill blendmode of the object "name" to blendmode. If "name" is not
given the currently selected item is used.</p></dd>
<dt><a name="-setFillColor"><strong>setFillColor</strong></a>(...)</dt>
<dd><code>setFillColor("color", ["name"])</code>
@@ -42,15 +46,8 @@
<dt><a
name="-setFillTransparency"><strong>setFillTransparency</strong>(...)</a></dt>
<dd><code>setFillTransparency(transparency, ["name"])</code>
-<p>Sets the fill transparency of the object "name". If "name" is not given the
currently selected item is used. In spite of this command's wording, the
"transparency" value is actually a decimal corresponding to the
<strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20%
opacity.</p></dd>
-
-<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
-<dd><code>setLineBlendmode(blendmode, ["name"])</code>
-<p>Sets the line blendmode of the object "name" to blendmode is the name of
one of the defined colors. If "name" is not given the currently selected item
is used.</p></dd>
-
-<dt><a
name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
-<dd><code>setLineTransparency(transparency, ["name"])</code>
-<p>Sets the line transparency of the object "name". If "name" is not given the
currently selected item is used. In spite of this command's wording, the
"transparency" value is actually a decimal corresponding to the
<strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20%
opacity.</p></dd>
+<p>Sets the fill transparency of the object "name". If "name" is not given the
currently selected item is used.</p>
+<p>In spite of this command's wording, the "transparency" value is actually a
decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 =
90% opacity, 0.2 = 20% opacity.</p></dd>
<dt><a name="-setGradientFill"><strong>setGradientFill</strong></a>(...)</dt>
<dd><code>setGradientFill(type, "color1", shade1, "color2", shade2,
["name"])</code>
@@ -59,41 +56,6 @@
<dt><a name="-setGradientStop"><strong>setGradientStop</strong></a>(...)</dt>
<dd><code>setGradientStop("color", shade, opacity, ramppoint, ["name"])</code>
<p>Set or add a gradient stop to the gradient fill of the object \"name\" at
position ramppoint. Color descriptions are the same as for <a
href="#-setFillColor">setFillColor</a>() and <a
href="#-setFillShade">setFillShade</a>(). setGradientFill() must have been
called previously for the gradient fill to be visible.</p></dd>
-
-<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
-<dd><code>setLineCap(captype, ["name"])</code>
-<p>Sets the line cap style of the object "name" to the style "cap". If "name"
is not given the currently selected item is used. There are predefined
constants for "cap" - CAP_<type>.</p></dd>
-
-<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
-<dd><code>setLineColor("color", ["name"])</code>
-<p>Sets the line color of the object "name" to the color "color". If "name" is
not given the currently selected item is used.</p></dd>
-
-<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
-<dd><code>setMultiLine("namedStyle", ["name"])</code>
-<p>Sets the line style of the object "name" to the named style "namedStyle".
If "name" is not given the currently selected item is used.</p>
-<p>May raise <a href="scripterapi.html#NotFoundError">NotFoundError</a> if the
line style doesn't exist.</p></dd>
-
-<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
-<dd><code>setLineJoin(join, ["name"])</code>
-<p>Sets the line join style of the object "name" to the style "join". If
"name" is not given the currently selected item is used. There are predefined
constants for join - JOIN_<type>.</p></dd>
-
-<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
-<dd><code>setLineShade(shade, ["name"])</code>
-<p>Sets the shading of the line color of the object "name" to "shade". "shade"
must be an integer value in the range from 0 (lightest) to 100 (full color
intensity). If "name" is not given the currently selected item is used.</p>
-<p>May raise ValueError if the line shade is out of bounds.</p></dd>
-
-<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
-<dd><code>setLineStyle(style, ["name"])</code>
-<p>Sets the line style of the object "name" to the style "style". If "name" is
not given the currently selected item is used. There are predefined constants
for "style" - LINE_<style>.</p></dd>
-
-<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
-<dd><code>setLineWidth(width, ["name"])</code>
-<p>Sets line width of the object "name" to "width". "width" must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not
given the currently selected item is used.</p>
-<p>May raise ValueError if the line width is out of bounds.</p></dd>
-
-<dt><a name="-scaleImage"><strong><em>scaleImage</em></strong></a>(...)</dt>
-<dd><code>scaleImage(x, y [, "name"])</code>
-<p><b>Do not use this command, since it no longer works. Use setImageScale
instead.</b></p></dd>
<dt><a name="-setImageScale"><strong>setImageScale</strong></a>(...)</dt>
<dd><code>setImageScale(x, y [, "name"])</code>
@@ -104,6 +66,48 @@
<dd><code>setImageOffset(x, y [, "name"])</code>
<p>Sets the position of the picture in the image frame "name". If "name" is
not given the currently selected item is used. The specified offset values are
equal to the values shown on properties palette when point unit is used.</p>
<p>May raise <a
href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> if the
target frame is not an image frame</p></dd>
+
+<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
+<dd><code>setLineBlendmode(blendmode, ["name"])</code>
+<p>Sets the line blendmode of the object "name" to blendmode is the name of
one of the defined colors. If "name" is not given the currently selected item
is used.</p></dd>
+
+<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
+<dd><code>setLineCap(captype, ["name"])</code>
+<p>Sets the line cap style of the object "name" to the style "cap". If "name"
is not given the currently selected item is used.</p>
+<p>The value "cap" must be taken amongst predefined constants
CAP_<type>: CAP_FLAT, CAP_ROUND, or CAP_SQUARE.</p></dd>
+
+<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
+<dd><code>setLineColor("color", ["name"])</code>
+<p>Sets the line color of the object "name" to the color "color". If "name" is
not given the currently selected item is used.</p></dd>
+
+<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
+<dd><code>setLineJoin(join, ["name"])</code>
+<p>Sets the line join style of the object "name" to the style "join". If
"name" is not given the currently selected item is used.</p>
+<p>The value "join" must be taken amongst predefined constants
JOIN_<type>: JOIN_BEVEL, JOIN_MITTER or JOIN_ROUND.</p></dd>
+
+<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
+<dd><code>setLineShade(shade, ["name"])</code>
+<p>Sets the shading of the line color of the object "name" to "shade". "shade"
must be an integer value in the range from 0 (lightest) to 100 (full color
intensity). If "name" is not given the currently selected item is used.</p>
+<p>May raise ValueError if the line shade is out of bounds.</p></dd>
+
+<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
+<dd><code>setLineStyle(style, ["name"])</code>
+<p>Sets the line style of the object "name" to the style "style". If "name" is
not given the currently selected item is used.</p>
+<p>There are predefined constants for "style" - LINE_<style>.</p></dd>
+
+<dt><a
name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
+<dd><code>setLineTransparency(transparency, ["name"])</code>
+<p>Sets the line transparency of the object "name". If "name" is not given the
currently selected item is used. In spite of this command's wording, the
"transparency" value is actually a decimal corresponding to the
<strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20%
opacity.</p></dd>
+
+<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
+<dd><code>setLineWidth(width, ["name"])</code>
+<p>Sets line width of the object "name" to "width". "width" must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not
given the currently selected item is used.</p>
+<p>May raise ValueError if the line width is out of bounds.</p></dd>
+
+<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
+<dd><code>setMultiLine("namedStyle", ["name"])</code>
+<p>Sets the line style of the object "name" to the named style "namedStyle".
If "name" is not given the currently selected item is used.</p>
+<p>May raise <a href="scripterapi.html#NotFoundError">NotFoundError</a> if the
line style doesn't exist.</p></dd>
<dt><a
name="-setObjectAttributes"><strong>setObjectAttributes</strong></a>(...)</dt>
<dd><code>setObjectAttributes(attributes, ["name"])</code>
Modified: trunk/Scribus/doc/en/scripterapi-setobjprop.html
URL:
http://scribus.net/websvn/diff.php?repname=Scribus&rev=22760&path=/trunk/Scribus/doc/en/scripterapi-setobjprop.html
==============================================================================
--- trunk/Scribus/doc/en/scripterapi-setobjprop.html (original)
+++ trunk/Scribus/doc/en/scripterapi-setobjprop.html Sat Nov 17 19:50:45 2018
@@ -18,6 +18,10 @@
<p>Loads the picture "picture" into the image frame "name". If "name" is not
given the currently selected item is used.</p>
<p>May raise <a
href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> if the
target frame is not an image frame</p></dd></dt>
+<dt><a name="-scaleImage"><strong>scaleImage</strong></a>(...)</dt>
+<dd><code>scaleImage(x, y [, "name"])</code>
+<p><b>Do not use this command since it no longer works. Use setImageScale
instead.</b></p></dd>
+
<dt><a name="-setCornerRadius"><strong>setCornerRadius</strong></a>(...)</dt>
<dd><code>setCornerRadius(radius, ["name"])</code>
<p>Sets the corner radius of the object "name". The radius is expressed in
points regardless of page units, and must be an integer. If "name" is not given
the currently selected item is used.</p>
@@ -29,7 +33,7 @@
<dt><a name="-setFillBlendmode"><strong>setFillBlendmode</strong>(...)</a></dt>
<dd><code>setFillBlendmode(blendmode, ["name"])</code>
-<p>Sets the fill blendmode of the object "name" to blendmode is the name of
one of the defined colors. If "name" is not given the currently selected item
is used.</p></dd>
+<p>Sets the fill blendmode of the object "name" to blendmode. If "name" is not
given the currently selected item is used.</p></dd>
<dt><a name="-setFillColor"><strong>setFillColor</strong></a>(...)</dt>
<dd><code>setFillColor("color", ["name"])</code>
@@ -42,15 +46,8 @@
<dt><a
name="-setFillTransparency"><strong>setFillTransparency</strong>(...)</a></dt>
<dd><code>setFillTransparency(transparency, ["name"])</code>
-<p>Sets the fill transparency of the object "name". If "name" is not given the
currently selected item is used. In spite of this command's wording, the
"transparency" value is actually a decimal corresponding to the
<strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20%
opacity.</p></dd>
-
-<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
-<dd><code>setLineBlendmode(blendmode, ["name"])</code>
-<p>Sets the line blendmode of the object "name" to blendmode is the name of
one of the defined colors. If "name" is not given the currently selected item
is used.</p></dd>
-
-<dt><a
name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
-<dd><code>setLineTransparency(transparency, ["name"])</code>
-<p>Sets the line transparency of the object "name". If "name" is not given the
currently selected item is used. In spite of this command's wording, the
"transparency" value is actually a decimal corresponding to the
<strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20%
opacity.</p></dd>
+<p>Sets the fill transparency of the object "name". If "name" is not given the
currently selected item is used.</p>
+<p>In spite of this command's wording, the "transparency" value is actually a
decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 =
90% opacity, 0.2 = 20% opacity.</p></dd>
<dt><a name="-setGradientFill"><strong>setGradientFill</strong></a>(...)</dt>
<dd><code>setGradientFill(type, "color1", shade1, "color2", shade2,
["name"])</code>
@@ -59,41 +56,6 @@
<dt><a name="-setGradientStop"><strong>setGradientStop</strong></a>(...)</dt>
<dd><code>setGradientStop("color", shade, opacity, ramppoint, ["name"])</code>
<p>Set or add a gradient stop to the gradient fill of the object \"name\" at
position ramppoint. Color descriptions are the same as for <a
href="#-setFillColor">setFillColor</a>() and <a
href="#-setFillShade">setFillShade</a>(). setGradientFill() must have been
called previously for the gradient fill to be visible.</p></dd>
-
-<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
-<dd><code>setLineCap(captype, ["name"])</code>
-<p>Sets the line cap style of the object "name" to the style "cap". If "name"
is not given the currently selected item is used. There are predefined
constants for "cap" - CAP_<type>.</p></dd>
-
-<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
-<dd><code>setLineColor("color", ["name"])</code>
-<p>Sets the line color of the object "name" to the color "color". If "name" is
not given the currently selected item is used.</p></dd>
-
-<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
-<dd><code>setMultiLine("namedStyle", ["name"])</code>
-<p>Sets the line style of the object "name" to the named style "namedStyle".
If "name" is not given the currently selected item is used.</p>
-<p>May raise <a href="scripterapi.html#NotFoundError">NotFoundError</a> if the
line style doesn't exist.</p></dd>
-
-<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
-<dd><code>setLineJoin(join, ["name"])</code>
-<p>Sets the line join style of the object "name" to the style "join". If
"name" is not given the currently selected item is used. There are predefined
constants for join - JOIN_<type>.</p></dd>
-
-<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
-<dd><code>setLineShade(shade, ["name"])</code>
-<p>Sets the shading of the line color of the object "name" to "shade". "shade"
must be an integer value in the range from 0 (lightest) to 100 (full color
intensity). If "name" is not given the currently selected item is used.</p>
-<p>May raise ValueError if the line shade is out of bounds.</p></dd>
-
-<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
-<dd><code>setLineStyle(style, ["name"])</code>
-<p>Sets the line style of the object "name" to the style "style". If "name" is
not given the currently selected item is used. There are predefined constants
for "style" - LINE_<style>.</p></dd>
-
-<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
-<dd><code>setLineWidth(width, ["name"])</code>
-<p>Sets line width of the object "name" to "width". "width" must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not
given the currently selected item is used.</p>
-<p>May raise ValueError if the line width is out of bounds.</p></dd>
-
-<dt><a name="-scaleImage"><strong><em>scaleImage</em></strong></a>(...)</dt>
-<dd><code>scaleImage(x, y [, "name"])</code>
-<p><b>Do not use this command, since it no longer works. Use setImageScale
instead.</b></p></dd>
<dt><a name="-setImageScale"><strong>setImageScale</strong></a>(...)</dt>
<dd><code>setImageScale(x, y [, "name"])</code>
@@ -104,6 +66,48 @@
<dd><code>setImageOffset(x, y [, "name"])</code>
<p>Sets the position of the picture in the image frame "name". If "name" is
not given the currently selected item is used. The specified offset values are
equal to the values shown on properties palette when point unit is used.</p>
<p>May raise <a
href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> if the
target frame is not an image frame</p></dd>
+
+<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
+<dd><code>setLineBlendmode(blendmode, ["name"])</code>
+<p>Sets the line blendmode of the object "name" to blendmode is the name of
one of the defined colors. If "name" is not given the currently selected item
is used.</p></dd>
+
+<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
+<dd><code>setLineCap(captype, ["name"])</code>
+<p>Sets the line cap style of the object "name" to the style "cap". If "name"
is not given the currently selected item is used.</p>
+<p>The value "cap" must be taken amongst predefined constants
CAP_<type>: CAP_FLAT, CAP_ROUND, or CAP_SQUARE.</p></dd>
+
+<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
+<dd><code>setLineColor("color", ["name"])</code>
+<p>Sets the line color of the object "name" to the color "color". If "name" is
not given the currently selected item is used.</p></dd>
+
+<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
+<dd><code>setLineJoin(join, ["name"])</code>
+<p>Sets the line join style of the object "name" to the style "join". If
"name" is not given the currently selected item is used.</p>
+<p>The value "join" must be taken amongst predefined constants
JOIN_<type>: JOIN_BEVEL, JOIN_MITTER or JOIN_ROUND.</p></dd>
+
+<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
+<dd><code>setLineShade(shade, ["name"])</code>
+<p>Sets the shading of the line color of the object "name" to "shade". "shade"
must be an integer value in the range from 0 (lightest) to 100 (full color
intensity). If "name" is not given the currently selected item is used.</p>
+<p>May raise ValueError if the line shade is out of bounds.</p></dd>
+
+<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
+<dd><code>setLineStyle(style, ["name"])</code>
+<p>Sets the line style of the object "name" to the style "style". If "name" is
not given the currently selected item is used.</p>
+<p>There are predefined constants for "style" - LINE_<style>.</p></dd>
+
+<dt><a
name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
+<dd><code>setLineTransparency(transparency, ["name"])</code>
+<p>Sets the line transparency of the object "name". If "name" is not given the
currently selected item is used. In spite of this command's wording, the
"transparency" value is actually a decimal corresponding to the
<strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20%
opacity.</p></dd>
+
+<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
+<dd><code>setLineWidth(width, ["name"])</code>
+<p>Sets line width of the object "name" to "width". "width" must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not
given the currently selected item is used.</p>
+<p>May raise ValueError if the line width is out of bounds.</p></dd>
+
+<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
+<dd><code>setMultiLine("namedStyle", ["name"])</code>
+<p>Sets the line style of the object "name" to the named style "namedStyle".
If "name" is not given the currently selected item is used.</p>
+<p>May raise <a href="scripterapi.html#NotFoundError">NotFoundError</a> if the
line style doesn't exist.</p></dd>
<dt><a
name="-setObjectAttributes"><strong>setObjectAttributes</strong></a>(...)</dt>
<dd><code>setObjectAttributes(attributes, ["name"])</code>
Modified: trunk/Scribus/doc/fr/scripterapi-setobjprop.html
URL:
http://scribus.net/websvn/diff.php?repname=Scribus&rev=22760&path=/trunk/Scribus/doc/fr/scripterapi-setobjprop.html
==============================================================================
--- trunk/Scribus/doc/fr/scripterapi-setobjprop.html (original)
+++ trunk/Scribus/doc/fr/scripterapi-setobjprop.html Sat Nov 17 19:50:45 2018
@@ -1,98 +1,118 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- <title>Choisir les propriétés de l'objet</title>
+ <title>Définir les propriétés de l'objet</title>
</head>
<body>
-<h2>Choisir les propriétés de l'objet</h2>
+<h2>Définir les propriétés de l'objet</h2>
<dl>
<dt><a name="-linkTextFrames"><strong>linkTextFrames</strong></a>(...)</dt>
-<dd><code><a href="#-linkTextFrames">linkTextFrames</a>("nomDepart",
"nomArrivee")</code>
+<dd><code>linkTextFrames("nomDepart", "nomArrivee")</code>
<p>Établit un lien entre deux cadres de texte. Le cadre nommé
"nomDepart" est lié au cadre "nomArrivee". Le cadre cible doit
être un cadre de texte vide et ne doit pas pointer vers d'autres cadres
ni porter un lien provenant d'autres cadres.</p>
<p>Peut générer <a href="#ScribusException">ScribusException</a>
en cas d'infraction des règles de liens.</p></dd>
<dt><a name="-loadImage"><strong>loadImage</strong></a>(...)</dt>
-<dd><code><a href="#-loadImage">loadImage</a>("nomFichier" [, "nom"])</code>
+<dd><code>loadImage("nomFichier" [, "nom"])</code>
<p>Charge l'image "nomFichier" dans le cadre d'image "nom". Si le "nom" n'est
pas fourni, l'élément sélectionné est
utilisé. </p>
<p>Peut générer <a
href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> si le cadre
cible n'est pas un cadre d'image</p></dd></dt>
-
+
<dt><a name="-scaleImage"><strong>scaleImage</strong></a>(...)</dt>
-<dd><code><a href="#-scaleImage">scaleImage</a>(x, y [, "nom"])</code>
-<p>Définit les facteurs de redimensionnement internes de l'image dans
le cadre d'image "nom". Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé. Un nombre de 1 signifie 100 %.
Les facteurs de redimensionnement internes sont différents des valeurs
indiquées dans la palette des propriétés. Note :
dépréciée, veuillez utiliser setImageScale().</p>
-<p>Peut générer <a
href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> si le cadre
cible n'est pas un cadre d'image</p></dd>
+<dd><code>scaleImage(x, y [, "nom"])</code>
+<p><b>Veuillez ne plus utiliser cette fonction. Utilisez setImageScale en lieu
et place.</b></p></dd>
+
+<dt><a name="-setCornerRadius"><strong>setCornerRadius</strong></a>(...)</dt>
+<dd><code>setCornerRadius(rayon, ["nom"])</code>
+<p>Définit le rayon de coin de l'objet "nom". Le rayon est
exprimé en points. Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé. </p>
+<p>Peut générer ValueError si le rayon de coin est
négatif. </p></dd>
+
+<dt><a
name="-setCustomLineStyle"><strong>setCustomLineStyle</strong></a>(...)</dt>
+<dd><code>setCustomLineStyle(nomStyle, ["nom"])</code>
+<p>Définit le style de ligne personnalisé de l'objet "nom"
à la valeur "nomStyle". L'argument "nomStyle" doit être le nom du
style tel que définit dans le gestionnaire de style. Si le "nom" n'est
pas fourni, l'élément sélectionné est
utilisé.</p></dd>
+
+<dt><a name="-setFillBlendmode"><strong>setFillBlendmode</strong>(...)</a></dt>
+<dd><code>setFillBlendmode(modeFusion, ["nom"])</code>
+<p>Définit le mode de fusion appliqué à la couleur de
fond de l'objet "nom". Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé.</p></dd>
+
+<dt><a name="-setFillColor"><strong>setFillColor</strong></a>(...)</dt>
+<dd><code>setFillColor("couleur", ["nom"])</code>
+<p>Définit la "couleur" de fond de l'objet "nom". La "couleur" est le
nom d'une des couleurs définies.
+Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé. </p></dd>
+
+<dt><a name="-setFillShade"><strong>setFillShade</strong></a>(...)</dt>
+<dd><code>setFillShade(teinte, ["nom"])</code>
+<p>Définit la teinte de la couleur de fond de l'objet "nom". La valeur
"teinte" doit être une valeur entière comprise entre 0 (le plus
pâle) et 100 (toute l'intensité couleur).
+Si "nom" n'est pas fourni, l'élément sélectionné
est utilisé. <p>
+<p>Peut générer ValueError si la couleur de fond est hors
limites.</p></dd>
+
+<dt><a
name="-setFillTransparency"><strong>setFillTransparency</strong>(...)</a></dt>
+<dd><code>setFillTransparency(transparence, ["name"])</code>
+<p>Définit la transparence de la couleur de fond de l'objet "nom". Si
le "nom" n'est pas fourni, l'élément sélectionné
est utilisé.</p>
+<p>En dépit du nom de cette fonction, la valeur "transparence" correspond en
réalité à <strong>l'opacité</strong>, par exemple,
0.9 = 90% d'opacité, 0.2 = 20% d'opacité.</p></dd>
+
+<dt><a name="-setGradientFill"><strong>setGradientFill</strong></a>(...)</dt>
+<dd><code>setGradientFill(type, "couleur1", teinte1, "couleur2", teinte2,
["nom"])</code>
+<p>Définit le dégradé de fond de l'objet "nom" à
"type". Les descriptions des couleurs sont identiques à celles de <a
href="#-setFillColor">setFillColor</a>() et de <a
href="#-setFillShade">setFillShade</a>(). Voir
+les constantes pour les types disponibles (FILL_<type>).</p></dd>
<dt><a name="-setImageScale"><strong>setImageScale</strong></a>(...)</dt>
-<dd><code><a href="#-setImageScale">setImageScale</a>(x, y [, "nom"])</code>
+<dd><code>setImageScale(x, y [, "nom"])</code>
<p>Définit les facteurs de redimensionnement de l'image dans le cadre
d'image "nom". Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé. Un nombre de 1 signifie 100 %.
Les facteurs de redimensionnement sont égaux aux valeurs
indiquées dans la palette des propriétés.</p>
<p>Peut générer <a
href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> si le cadre
cible n'est pas un cadre d'image</p></dd>
<dt><a name="-setImageOffset"><strong>setImageOffset</strong></a>(...)</dt>
-<dd><code><a href="#-setImageOffset">setImageOffset</a>(x, y [, "nom"])</code>
-<p>Définit la position de l'image dans le cadre d'image "nom". Si le
"nom" n'est pas fourni, l'élément sélectionné est
utilisé. Les coordonnées spécifiées sont
égales aux valeurs indiquées dans la palette des
propriétés lorsque l'unité utilisée est le
point.</p>
+<dd><code>setImageOffset(x, y [, "nom"])</code>
+<p>Définit la position de l'image dans le cadre d'image "nom". Si le
"nom" n'est pas fourni, l'élément sélectionné est
utilisé. Les coordonnées spécifiées sont
égales aux valeurs indiquées dans la palette des
propriétés lorsque l'unité utilisée est le
point.</p>
<p>Peut générer <a
href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> si le cadre
cible n'est pas un cadre d'image</p></dd>
-<dt><a name="-setCornerRadius"><strong>setCornerRadius</strong></a>(...)</dt>
-<dd><code><a href="#-setCornerRadius">setCornerRadius</a>(rayon,
["nom"])</code>
-<p>Établit le rayon de coin de l'objet "nom". Le rayon est
exprimé en points. Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé. </p>
-<p>Peut générer ValueError si le rayon de coin est
négatif. </p></dd>
-
-<dt><a name="-setFillColor"><strong>setFillColor</strong></a>(...)</dt>
-<dd><code><a href="#-setFillColor">setFillColor</a>("couleur", ["nom"])</code>
-<p>Établit la couleur de fond de l'objet "nom" à la couleur
"couleur". La "couleur" est le nom d'une des couleurs définies.
-Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé. </p></dd>
-
-<dt><a name="-setFillShade"><strong>setFillShade</strong></a>(...)</dt>
-<dd><code><a href="#-setFillShade">setFillShade</a>(teinte, ["nom"])</code>
-<p>Établit la teinte de la couleur de fond de l'objet "nom" à
"teinte". La "teinte" doit être une valeur entière entre 0 (le
plus pâle) et 100 (toute l'intensité couleur).
-Si "nom" n'est pas fourni, l'élément sélectionné
est utilisé. <p>
-<p>Peut générer ValueError si la couleur de fond est hors
limites.</p></dd>
-
-<dt><a name="-setGradientFill"><strong>setGradientFill</strong></a>(...)</dt>
-<dd><code><a href="#-setGradientFill">setGradientFill</a>(type, "couleur1",
teinte1, "couleur2", teinte2, ["nom"])</code>
-<p>Établit le dégradé de fond de l'objet "nom" à
"type". Les descriptions des couleurs sont identiques à celles de <a
href="#-setFillColor">setFillColor</a>() et de<a
href="#-setFillShade">setFillShade</a>(). Voir
-les constantes pour les types disponibles (FILL_<type>).</p></dd>
+<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
+<dd><code>setLineBlendmode(modeFusion, ["nom"])</code>
+<p>Définit le mode de fusion appliqué à au filet de
l'objet "nom". Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé.</p></dd>
<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
<dd><code>setLineCap(typeFin, ["nom"])</code>
-<p>Établit la valeur de style "typeFin" pour le bout de ligne de
l'objet "nom".
-Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé. Il
-y a des constantes prédéfinies pour "typeFin" -
CAP_<type>.</p></dd>
+<p>Définit le type de fin de ligne "typeFin" de l'objet "nom".
+Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé.<p>
+<p>La valeur "typeFin" doit être choisie parmi les constantes
prédéfinies CAP_<type> : CAP_FLAT, CAP_ROUND ou
CAP_SQUARE.</p></dd>
<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
-<dd><code><a href="#-setLineColor">setLineColor</a>("couleur", ["nom"])</code>
-<p>Établit la valeur "couleur" pour le filet de l'objet "nom". Si le
"nom" n'est pas fourni, l'élément sélectionné est
utilisé. </p></dd>
-
-<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
-<dd><code><a href="#-setMultiLine">setMultiLine</a>("styleNomme",
["nom"])</code>
-<p>Établit la valeur "styleNomme" pour le style de filet de l'objet
"nom". Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé. </p>
-<p>Peut générer
-<a href="scripterapi.html#NotFoundError">NotFoundError</a> si le
-style de filet n'existe pas.</p></dd>
-
+<dd><code>setLineColor("couleur", ["nom"])</code>
+<p>Définit la "couleur" de filet de l'objet "nom". Si le "nom" n'est
pas fourni, l'élément sélectionné est
utilisé. </p></dd>
+
<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
-<dd><code><a href="#-setLineJoin">setLineJoin</a>(jonction, ["nom"])</code>
-<p>Établit la valeur du style "jonction" pour le filet de l'objet
"nom". Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé. Il
-y a des constantes prédéfinies pour "jonction" -
JOIN_<type>.</p></dd>
+<dd><code>setLineJoin(jonction, ["nom"])</code>
+<p>Définit la valeur du style "jonction" pour le filet de l'objet
"nom". Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé.</p>
+<p>La valeur "jonction" doit être choisie parmi les constantes
prédéfinies JOIN_<type> : JOIN_BEVEL, JOIN_MITTER ou
JOIN_ROUND.</p></dd>
<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
-<dd><code><a href="#-setLineShade">setLineShade</a>(teinte, ["nom"])</code>
-<p>Établit la valeur "teinte" pour la couleur de filet de l'objet
"nom". La valeur "teinte" doit être un nombre entier compris entre 0
(pâle) et 100 (intensité maximale).
+<dd><code>setLineShade(teinte, ["nom"])</code>
+<p>Définit la teinte de couleur du filet de l'objet "nom" à la
valeur "teinte". La valeur "teinte" doit être un nombre entier compris
entre 0 (pâle) et 100 (intensité maximale).
Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé. </p>
<p>Peut générer ValueError si la teinte du filet est hors
limites.</p></dd>
<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
-<dd><code><a href="#-setLineStyle">setLineStyle</a>(style, ["nom"])</code>
-<p>Établit la valeur "style" pour le filet de l'objet "nom". Si le
"nom" n'est pas fourni, l'élément sélectionné est
utilisé. Il
-y a des constantes prédéfinies pour "style" -
LINE_<style>.</p></dd>
+<dd><code>setLineStyle(style, ["nom"])</code>
+<p>Définit le style de filet de l'objet "nom" à la valeur
"style". Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé.<p>
+<p>Il existe des constantes prédéfinies pour "style" -
LINE_<style>.</p></dd>
+
+<dt><a
name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
+<dd><code>setLineTransparency(transparence, ["name"])</code>
+<p>Définit la transparence appliquée au filet de l'objet "nom".
Si le "nom" n'est pas fourni, l'élément sélectionné
est utilisé.</p>
+<p>En dépit du nom de cette fonction, la valeur "transparence" correspond en
réalité à <strong>l'opacité</strong>, par exemple,
0.9 = 90% d'opacité, 0.2 = 20% d'opacité.</p></dd>
<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
-<dd><code><a href="#-setLineWidth">setLineWidth</a>(epaisseur,
-["nom"])</code>
+<dd><code>setLineWidth(epaisseur, ["nom"])</code>
<p>Définit l'épaisseur de filet de l'objet "nom" à la
valeur "épaisseur". La valeur "épaisseur" doit être entre
0.0 et 12.0 inclusivement,
exprimée en points. Si le "nom" n'est pas fourni,
l'élément sélectionné est utilisé. </p>
<p>Peut générer ValueError si l'épaisseur de filet est
hors limites.</p></dd>
+
+<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
+<dd><code>setMultiLine("styleNomme", ["nom"])</code>
+<p>Définit le style de filet de l'objet "nom" à la valeur
"styleNomme". Si le "nom" n'est pas fourni, l'élément
sélectionné est utilisé. </p>
+<p>Peut générer
+<a href="scripterapi.html#NotFoundError">NotFoundError</a> si le
+style de filet n'existe pas.</p></dd>
<dt><a
name="-setObjectAttributes"><strong>setObjectAttributes</strong></a>(...)</dt>
<dd><code>setObjectAttributes(attributs, ["nom"])</code>
@@ -100,11 +120,11 @@
<p>L'argument "attributs" est une liste de dictionnaires. Chaque dictionnaire
doit définir les clés suivantes: Name, Type, Value, Parameter,
Relationship, RelationshipTo, AutoAddTo. Chacune de ces valeurs doit être du
type chaîne de caractère.</p></dd>
<dt><a name="-traceText"><strong>traceText</strong></a>(...)</dt>
-<dd><code><a href="#-traceText">traceText</a>(["nom"])</code>
+<dd><code>traceText(["nom"])</code>
<p>Convertit le cadre de texte "nom" en contours. Si le "nom" n'est pas
fourni, l'élément sélectionné est utilisé.
</p></dd>
<dt><a name="-unlinkTextFrames"><strong>unlinkTextFrames</strong></a>(...)</dt>
-<dd><code><a href="#-unlinkTextFrames">unlinkTextFrames</a>("nom")</code>
+<dd><code>unlinkTextFrames("nom")</code>
<p>Retire l'objet désigné de la séquence de liens du
cadre de texte. Si le cadre se trouvait au milieu d'une chaîne de liens,
les cadres précédent et suivant seront connectés, par
exemple 'a->b->c' devient 'a->c' lorsque vous déconnectez <a
href="#-unlinkTextFrames">unlinkTextFrames</a>(b)'</p>
<p>Peut générer <a href="#ScribusException">ScribusException</a>
en cas d'infraction des règles de liens.</p></dd>
Modified: trunk/Scribus/doc/it/scripterapi-setobjprop.html
URL:
http://scribus.net/websvn/diff.php?repname=Scribus&rev=22760&path=/trunk/Scribus/doc/it/scripterapi-setobjprop.html
==============================================================================
--- trunk/Scribus/doc/it/scripterapi-setobjprop.html (original)
+++ trunk/Scribus/doc/it/scripterapi-setobjprop.html Sat Nov 17 19:50:45 2018
@@ -18,6 +18,10 @@
<p>Loads the picture "picture" into the image frame "name". If "name" is not
given the currently selected item is used.</p>
<p>May raise <a
href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> if the
target frame is not an image frame</p></dd></dt>
+<dt><a name="-scaleImage"><strong>scaleImage</strong></a>(...)</dt>
+<dd><code>scaleImage(x, y [, "name"])</code>
+<p><b>Do not use this command since it no longer works. Use setImageScale
instead.</b></p></dd>
+
<dt><a name="-setCornerRadius"><strong>setCornerRadius</strong></a>(...)</dt>
<dd><code>setCornerRadius(radius, ["name"])</code>
<p>Sets the corner radius of the object "name". The radius is expressed in
points regardless of page units, and must be an integer. If "name" is not given
the currently selected item is used.</p>
@@ -29,7 +33,7 @@
<dt><a name="-setFillBlendmode"><strong>setFillBlendmode</strong>(...)</a></dt>
<dd><code>setFillBlendmode(blendmode, ["name"])</code>
-<p>Sets the fill blendmode of the object "name" to blendmode is the name of
one of the defined colors. If "name" is not given the currently selected item
is used.</p></dd>
+<p>Sets the fill blendmode of the object "name" to blendmode. If "name" is not
given the currently selected item is used.</p></dd>
<dt><a name="-setFillColor"><strong>setFillColor</strong></a>(...)</dt>
<dd><code>setFillColor("color", ["name"])</code>
@@ -42,15 +46,8 @@
<dt><a
name="-setFillTransparency"><strong>setFillTransparency</strong>(...)</a></dt>
<dd><code>setFillTransparency(transparency, ["name"])</code>
-<p>Sets the fill transparency of the object "name". If "name" is not given the
currently selected item is used. In spite of this command's wording, the
"transparency" value is actually a decimal corresponding to the
<strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20%
opacity.</p></dd>
-
-<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
-<dd><code>setLineBlendmode(blendmode, ["name"])</code>
-<p>Sets the line blendmode of the object "name" to blendmode is the name of
one of the defined colors. If "name" is not given the currently selected item
is used.</p></dd>
-
-<dt><a
name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
-<dd><code>setLineTransparency(transparency, ["name"])</code>
-<p>Sets the line transparency of the object "name". If "name" is not given the
currently selected item is used. In spite of this command's wording, the
"transparency" value is actually a decimal corresponding to the
<strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20%
opacity.</p></dd>
+<p>Sets the fill transparency of the object "name". If "name" is not given the
currently selected item is used.</p>
+<p>In spite of this command's wording, the "transparency" value is actually a
decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 =
90% opacity, 0.2 = 20% opacity.</p></dd>
<dt><a name="-setGradientFill"><strong>setGradientFill</strong></a>(...)</dt>
<dd><code>setGradientFill(type, "color1", shade1, "color2", shade2,
["name"])</code>
@@ -59,41 +56,6 @@
<dt><a name="-setGradientStop"><strong>setGradientStop</strong></a>(...)</dt>
<dd><code>setGradientStop("color", shade, opacity, ramppoint, ["name"])</code>
<p>Set or add a gradient stop to the gradient fill of the object \"name\" at
position ramppoint. Color descriptions are the same as for <a
href="#-setFillColor">setFillColor</a>() and <a
href="#-setFillShade">setFillShade</a>(). setGradientFill() must have been
called previously for the gradient fill to be visible.</p></dd>
-
-<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
-<dd><code>setLineCap(captype, ["name"])</code>
-<p>Sets the line cap style of the object "name" to the style "cap". If "name"
is not given the currently selected item is used. There are predefined
constants for "cap" - CAP_<type>.</p></dd>
-
-<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
-<dd><code>setLineColor("color", ["name"])</code>
-<p>Sets the line color of the object "name" to the color "color". If "name" is
not given the currently selected item is used.</p></dd>
-
-<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
-<dd><code>setMultiLine("namedStyle", ["name"])</code>
-<p>Sets the line style of the object "name" to the named style "namedStyle".
If "name" is not given the currently selected item is used.</p>
-<p>May raise <a href="scripterapi.html#NotFoundError">NotFoundError</a> if the
line style doesn't exist.</p></dd>
-
-<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
-<dd><code>setLineJoin(join, ["name"])</code>
-<p>Sets the line join style of the object "name" to the style "join". If
"name" is not given the currently selected item is used. There are predefined
constants for join - JOIN_<type>.</p></dd>
-
-<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
-<dd><code>setLineShade(shade, ["name"])</code>
-<p>Sets the shading of the line color of the object "name" to "shade". "shade"
must be an integer value in the range from 0 (lightest) to 100 (full color
intensity). If "name" is not given the currently selected item is used.</p>
-<p>May raise ValueError if the line shade is out of bounds.</p></dd>
-
-<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
-<dd><code>setLineStyle(style, ["name"])</code>
-<p>Sets the line style of the object "name" to the style "style". If "name" is
not given the currently selected item is used. There are predefined constants
for "style" - LINE_<style>.</p></dd>
-
-<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
-<dd><code>setLineWidth(width, ["name"])</code>
-<p>Sets line width of the object "name" to "width". "width" must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not
given the currently selected item is used.</p>
-<p>May raise ValueError if the line width is out of bounds.</p></dd>
-
-<dt><a name="-scaleImage"><strong><em>scaleImage</em></strong></a>(...)</dt>
-<dd><code>scaleImage(x, y [, "name"])</code>
-<p><b>Do not use this command, since it no longer works. Use setImageScale
instead.</b></p></dd>
<dt><a name="-setImageScale"><strong>setImageScale</strong></a>(...)</dt>
<dd><code>setImageScale(x, y [, "name"])</code>
@@ -104,6 +66,48 @@
<dd><code>setImageOffset(x, y [, "name"])</code>
<p>Sets the position of the picture in the image frame "name". If "name" is
not given the currently selected item is used. The specified offset values are
equal to the values shown on properties palette when point unit is used.</p>
<p>May raise <a
href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> if the
target frame is not an image frame</p></dd>
+
+<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
+<dd><code>setLineBlendmode(blendmode, ["name"])</code>
+<p>Sets the line blendmode of the object "name" to blendmode is the name of
one of the defined colors. If "name" is not given the currently selected item
is used.</p></dd>
+
+<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
+<dd><code>setLineCap(captype, ["name"])</code>
+<p>Sets the line cap style of the object "name" to the style "cap". If "name"
is not given the currently selected item is used.</p>
+<p>The value "cap" must be taken amongst predefined constants
CAP_<type>: CAP_FLAT, CAP_ROUND, or CAP_SQUARE.</p></dd>
+
+<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
+<dd><code>setLineColor("color", ["name"])</code>
+<p>Sets the line color of the object "name" to the color "color". If "name" is
not given the currently selected item is used.</p></dd>
+
+<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
+<dd><code>setLineJoin(join, ["name"])</code>
+<p>Sets the line join style of the object "name" to the style "join". If
"name" is not given the currently selected item is used.</p>
+<p>The value "join" must be taken amongst predefined constants
JOIN_<type>: JOIN_BEVEL, JOIN_MITTER or JOIN_ROUND.</p></dd>
+
+<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
+<dd><code>setLineShade(shade, ["name"])</code>
+<p>Sets the shading of the line color of the object "name" to "shade". "shade"
must be an integer value in the range from 0 (lightest) to 100 (full color
intensity). If "name" is not given the currently selected item is used.</p>
+<p>May raise ValueError if the line shade is out of bounds.</p></dd>
+
+<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
+<dd><code>setLineStyle(style, ["name"])</code>
+<p>Sets the line style of the object "name" to the style "style". If "name" is
not given the currently selected item is used.</p>
+<p>There are predefined constants for "style" - LINE_<style>.</p></dd>
+
+<dt><a
name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
+<dd><code>setLineTransparency(transparency, ["name"])</code>
+<p>Sets the line transparency of the object "name". If "name" is not given the
currently selected item is used. In spite of this command's wording, the
"transparency" value is actually a decimal corresponding to the
<strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20%
opacity.</p></dd>
+
+<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
+<dd><code>setLineWidth(width, ["name"])</code>
+<p>Sets line width of the object "name" to "width". "width" must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not
given the currently selected item is used.</p>
+<p>May raise ValueError if the line width is out of bounds.</p></dd>
+
+<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
+<dd><code>setMultiLine("namedStyle", ["name"])</code>
+<p>Sets the line style of the object "name" to the named style "namedStyle".
If "name" is not given the currently selected item is used.</p>
+<p>May raise <a href="scripterapi.html#NotFoundError">NotFoundError</a> if the
line style doesn't exist.</p></dd>
<dt><a
name="-setObjectAttributes"><strong>setObjectAttributes</strong></a>(...)</dt>
<dd><code>setObjectAttributes(attributes, ["name"])</code>
_______________________________________________
scribus-commit mailing list
[email protected]
http://lists.scribus.net/mailman/listinfo/scribus-commit