From 058faf2581970fa18c314ad07f5658adeca32c69 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Sun, 27 Nov 2011 22:08:55 +0900 Subject: update to README --- doc/Axlsx/CellStyle.html | 174 ++++++++++++++++++++--------------------------- 1 file changed, 73 insertions(+), 101 deletions(-) (limited to 'doc/Axlsx/CellStyle.html') diff --git a/doc/Axlsx/CellStyle.html b/doc/Axlsx/CellStyle.html index 3574cb20..8a469a4b 100644 --- a/doc/Axlsx/CellStyle.html +++ b/doc/Axlsx/CellStyle.html @@ -97,16 +97,14 @@
Note: -

-Using Styles#add_style is the recommended way to manage cell styling. -

+
+

Using Styles#add_style is the recommended way to manage cell styling.

-

-CellStyle defines named styles that reference defined formatting records -and can be used in your worksheet. -

+ +

CellStyle defines named styles that reference defined formatting records +and can be used in your worksheet.

@@ -145,9 +143,8 @@ and can be used in your worksheet. -

-The buildinId to use when this named style is applied. -

+
+

The buildinId to use when this named style is applied.

@@ -172,9 +169,8 @@ The buildinId to use when this named style is applied. -

-Indicates that the build in style reference has been customized. -

+
+

Indicates that the build in style reference has been customized.

@@ -199,10 +195,9 @@ Indicates that the build in style reference has been customized. -

-Determines if this named style should show in the list of styles when using -excel. -

+
+

Determines if this named style should show in the list of styles when using +excel.

@@ -227,10 +222,9 @@ excel. -

-Determines if this formatting is for an outline style, and what level of -the outline it is to be applied to. -

+
+

Determines if this formatting is for an outline style, and what level of +the outline it is to be applied to.

@@ -255,9 +249,8 @@ the outline it is to be applied to. -

-The name of this cell style. -

+
+

The name of this cell style.

@@ -282,9 +275,8 @@ The name of this cell style. -

-The formatting record id this named style utilizes. -

+
+

The formatting record id this named style utilizes.

@@ -321,9 +313,8 @@ The formatting record id this named style utilizes. -

-Creats a new CellStyle object. -

+
+

Creats a new CellStyle object.

@@ -345,9 +336,8 @@ Creats a new CellStyle object. -

-Serializes the cell style. -

+
+

Serializes the cell style.

@@ -368,9 +358,8 @@ Serializes the cell style.

-

-Creats a new CellStyle object -

+ +

Creats a new CellStyle object

@@ -391,9 +380,8 @@ Creats a new CellStyle object — -

-a customizable set of options -

+
+

a customizable set of options

@@ -479,12 +467,11 @@ a customizable set of options
# File 'lib/axlsx/stylesheet/cell_style.rb', line 39
 
-def initialize(options={})
-  options.each do |o|
-    self.send("#{o[0]}=", o[1]) if self.respond_to? o[0]
-  end
-end
-
+def initialize(options={}) + options.each do |o| + self.send("#{o[0]}=", o[1]) if self.respond_to? o[0] + end +end @@ -507,9 +494,8 @@ a customizable set of options

-

-The buildinId to use when this named style is applied -

+ +

The buildinId to use when this named style is applied

@@ -550,10 +536,9 @@ The buildinId to use when this named style is applied
# File 'lib/axlsx/stylesheet/cell_style.rb', line 18
 
-def builtinId
-  @builtinId
-end
-
+def builtinId + @builtinId +end @@ -571,9 +556,8 @@ The buildinId to use when this named style is applied

-

-Indicates that the build in style reference has been customized. -

+ +

Indicates that the build in style reference has been customized.

@@ -607,10 +591,9 @@ Indicates that the build in style reference has been customized.
# File 'lib/axlsx/stylesheet/cell_style.rb', line 30
 
-def customBuiltin
-  @customBuiltin
-end
-
+def customBuiltin + @customBuiltin +end @@ -628,10 +611,9 @@ Indicates that the build in style reference has been customized.

-

-Determines if this named style should show in the list of styles when using -excel -

+ +

Determines if this named style should show in the list of styles when using +excel

@@ -665,10 +647,9 @@ excel
# File 'lib/axlsx/stylesheet/cell_style.rb', line 26
 
-def 
-  @hidden
-end
-
+def + @hidden +end @@ -686,10 +667,9 @@ excel

-

-Determines if this formatting is for an outline style, and what level of -the outline it is to be applied to. -

+ +

Determines if this formatting is for an outline style, and what level of +the outline it is to be applied to.

@@ -723,10 +703,9 @@ the outline it is to be applied to.
# File 'lib/axlsx/stylesheet/cell_style.rb', line 22
 
-def iLevel
-  @iLevel
-end
-
+def iLevel + @iLevel +end @@ -744,9 +723,8 @@ the outline it is to be applied to.

-

-The name of this cell style -

+ +

The name of this cell style

@@ -780,10 +758,9 @@ The name of this cell style
# File 'lib/axlsx/stylesheet/cell_style.rb', line 8
 
-def name
-  @name
-end
-
+def name + @name +end @@ -801,9 +778,8 @@ The name of this cell style

-

-The formatting record id this named style utilizes -

+ +

The formatting record id this named style utilizes

@@ -844,10 +820,9 @@ The formatting record id this named style utilizes
# File 'lib/axlsx/stylesheet/cell_style.rb', line 13
 
-def xfId
-  @xfId
-end
-
+def xfId + @xfId +end @@ -869,9 +844,8 @@ The formatting record id this named style utilizes

-

-Serializes the cell style -

+ +

Serializes the cell style

@@ -890,9 +864,8 @@ Serializes the cell style — -

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

+
+

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

@@ -926,10 +899,9 @@ The document builder instance this objects xml will be added to.
# File 'lib/axlsx/stylesheet/cell_style.rb', line 60
 
-def to_xml(xml)
-  xml.cellStyle(self.instance_values)
-end
-
+def to_xml(xml) + xml.cellStyle(self.instance_values) +end @@ -940,9 +912,9 @@ The document builder instance this objects xml will be added to.
-- cgit v1.2.3