From cdfc7251bde8347678d355e5fe65fc20e120bc23 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Sun, 27 Nov 2011 21:45:19 +0900 Subject: updating docs for 1.0.10a release --- doc/Axlsx/GradientStop.html | 80 ++++++++++++++++++++++++++------------------- 1 file changed, 47 insertions(+), 33 deletions(-) (limited to 'doc/Axlsx/GradientStop.html') diff --git a/doc/Axlsx/GradientStop.html b/doc/Axlsx/GradientStop.html index 53491565..6d7afa37 100644 --- a/doc/Axlsx/GradientStop.html +++ b/doc/Axlsx/GradientStop.html @@ -94,8 +94,9 @@

Overview

- -

The GradientStop object represents a color point in a gradient.

+

+The GradientStop object represents a color point in a gradient. +

@@ -134,8 +135,9 @@ -
-

The color for this gradient stop.

+

+The color for this gradient stop. +

@@ -160,8 +162,9 @@ -
-

The position of the color.

+

+The position of the color. +

@@ -198,8 +201,9 @@ -
-

Creates a new GradientStop object.

+

+Creates a new GradientStop object. +

@@ -221,8 +225,9 @@ -
-

Serializes the gradientStop.

+

+Serializes the gradientStop. +

@@ -243,8 +248,9 @@

- -

Creates a new GradientStop object

+

+Creates a new GradientStop object +

@@ -292,10 +298,11 @@
# File 'lib/axlsx/stylesheet/gradient_stop.rb', line 18
 
-def initialize(color, position)
-  self.color = color
-  self.position = position
-end
+def initialize(color, position) + self.color = color + self.position = position +end + @@ -318,8 +325,9 @@

- -

The color for this gradient stop

+

+The color for this gradient stop +

@@ -360,9 +368,10 @@
# File 'lib/axlsx/stylesheet/gradient_stop.rb', line 9
 
-def color
-  @color
-end
+def color + @color +end + @@ -380,8 +389,9 @@

- -

The position of the color

+

+The position of the color +

@@ -415,9 +425,10 @@
# File 'lib/axlsx/stylesheet/gradient_stop.rb', line 13
 
-def position
-  @position
-end
+def position + @position +end + @@ -439,8 +450,9 @@

- -

Serializes the gradientStop

+

+Serializes the gradientStop +

@@ -459,8 +471,9 @@ — -
-

The document builder instance this objects xml will be added to.

+

+The document builder instance this objects xml will be added to. +

@@ -492,7 +505,8 @@
# File 'lib/axlsx/stylesheet/gradient_stop.rb', line 31
 
-def to_xml(xml) xml.stop(:position => self.position) {self.color.to_xml(xml)} end
+def to_xml(xml) xml.stop(:position => self.position) {self.color.to_xml(xml)} end + @@ -503,9 +517,9 @@
-- cgit v1.2.3