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/CellStyle.html | 174 +++++++++++++++++++++++++++-------------------- 1 file changed, 101 insertions(+), 73 deletions(-) (limited to 'doc/Axlsx/CellStyle.html') diff --git a/doc/Axlsx/CellStyle.html b/doc/Axlsx/CellStyle.html index 9f357759..e30b4a7e 100644 --- a/doc/Axlsx/CellStyle.html +++ b/doc/Axlsx/CellStyle.html @@ -97,14 +97,16 @@
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. +

@@ -143,8 +145,9 @@ 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. +

@@ -169,8 +172,9 @@ and can be used in your worksheet.

-
-

Indicates that the build in style reference has been customized.

+

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

@@ -195,9 +199,10 @@ and can be used in your worksheet.

-
-

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. +

@@ -222,9 +227,10 @@ 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. +

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

-
-

The name of this cell style.

+

+The name of this cell style. +

@@ -275,8 +282,9 @@ the outline it is to be applied to.

-
-

The formatting record id this named style utilizes.

+

+The formatting record id this named style utilizes. +

@@ -313,8 +321,9 @@ the outline it is to be applied to.

-
-

Creats a new CellStyle object.

+

+Creats a new CellStyle object. +

@@ -336,8 +345,9 @@ the outline it is to be applied to.

-
-

Serializes the cell style.

+

+Serializes the cell style. +

@@ -358,8 +368,9 @@ the outline it is to be applied to.

- -

Creats a new CellStyle object

+

+Creats a new CellStyle object +

@@ -380,8 +391,9 @@ the outline it is to be applied to.

— -
-

a customizable set of options

+

+a customizable set of options +

@@ -467,11 +479,12 @@ the outline it is to be applied to.

# 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 + @@ -494,8 +507,9 @@ the outline it is to be applied to.

- -

The buildinId to use when this named style is applied

+

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

@@ -536,9 +550,10 @@ the outline it is to be applied to.

# File 'lib/axlsx/stylesheet/cell_style.rb', line 18
 
-def builtinId
-  @builtinId
-end
+def builtinId + @builtinId +end + @@ -556,8 +571,9 @@ the outline it is to be applied to.

- -

Indicates that the build in style reference has been customized.

+

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

@@ -591,9 +607,10 @@ the outline it is to be applied to.

# File 'lib/axlsx/stylesheet/cell_style.rb', line 30
 
-def customBuiltin
-  @customBuiltin
-end
+def customBuiltin + @customBuiltin +end + @@ -611,9 +628,10 @@ the outline it is to be applied to.

- -

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 +

@@ -647,9 +665,10 @@ excel

# File 'lib/axlsx/stylesheet/cell_style.rb', line 26
 
-def 
-  @hidden
-end
+def + @hidden +end + @@ -667,9 +686,10 @@ 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. +

@@ -703,9 +723,10 @@ 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 + @@ -723,8 +744,9 @@ the outline it is to be applied to.

- -

The name of this cell style

+

+The name of this cell style +

@@ -758,9 +780,10 @@ the outline it is to be applied to.

# File 'lib/axlsx/stylesheet/cell_style.rb', line 8
 
-def name
-  @name
-end
+def name + @name +end + @@ -778,8 +801,9 @@ the outline it is to be applied to.

- -

The formatting record id this named style utilizes

+

+The formatting record id this named style utilizes +

@@ -820,9 +844,10 @@ the outline it is to be applied to.

# File 'lib/axlsx/stylesheet/cell_style.rb', line 13
 
-def xfId
-  @xfId
-end
+def xfId + @xfId +end + @@ -844,8 +869,9 @@ the outline it is to be applied to.

- -

Serializes the cell style

+

+Serializes the cell style +

@@ -864,8 +890,9 @@ the outline it is to be applied to.

— -
-

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

+

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

@@ -899,9 +926,10 @@ the outline it is to be applied 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 + @@ -912,9 +940,9 @@ the outline it is to be applied to.

-- cgit v1.2.3