# C1.Win.FlexGrid.CellStyle

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_Win_FlexGrid_CellStyle" data-uid="C1.Win.FlexGrid.CellStyle" class="text-break">CellStyle Class
</h1>
  <div class="markdown level0 summary"><p>The <a class="xref" href="C1.Win.FlexGrid.CellStyle.html">CellStyle</a> class encapsulates properties that control the appearance of grid cells.
This information includes the background and foreground colors, font, text and image alignment, etc.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <div class="inheritance">
    <h5>Inheritance</h5>
    <div class="level0"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
    <div class="level1"><span class="xref">CellStyle</span></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.Win.FlexGrid.html">C1.Win.FlexGrid</a></h6>
  <h6><strong>Assembly</strong>: C1.Win.FlexGrid.10.dll</h6>
  <h5 id="C1_Win_FlexGrid_CellStyle_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[TypeConverter(typeof(ExpandableObjectConverter))]
public class CellStyle</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">&lt;TypeConverter(GetType(ExpandableObjectConverter))&gt;
Public Class CellStyle</code></pre>
  </div>
  <h5 id="C1_Win_FlexGrid_CellStyle_remarks"><strong>Remarks</strong></h5>
  <div class="markdown level0 remarks"><p>The <a class="xref" href="C1.Win.FlexGrid.C1FlexGridBase.Styles.html#C1_Win_FlexGrid_C1FlexGridBase_Styles">Styles</a> property exposes a collection of grid styles, and has 
methods for creating and removing styles from the grid.</p>
<p>You can create and define styles at design time, but right-clicking the grid and selecting the
"Edit Styles" menu option.</p>
<p>Styles follow a hierarchical model similar to styles in Microsoft Word or in cascading style sheets. 
Every property in a <a class="xref" href="C1.Win.FlexGrid.CellStyle.html">CellStyle</a> object may be left unassigned, in which case the value is 
inherited from a parent style. The parent style is usually the built-in <a class="xref" href="C1.Win.FlexGrid.CellStyleCollection.Normal.html#C1_Win_FlexGrid_CellStyleCollection_Normal">Normal</a> 
style.</p>
<p>To determine which elements are defined in a particular style, use the <a class="xref" href="C1.Win.FlexGrid.CellStyle.DefinedElements.html#C1_Win_FlexGrid_CellStyle_DefinedElements">DefinedElements</a> 
property.</p>
<p>When you modify the properties of a <a class="xref" href="C1.Win.FlexGrid.CellStyle.html">CellStyle</a> object, all cells that use that style 
are automatically repainted to reflect the changes.</p>
<p>Styles may be assigned to <a class="xref" href="C1.Win.FlexGrid.CellRange.html">CellRange</a>, <a class="xref" href="C1.Win.FlexGrid.Row.html">Row</a>, and <a class="xref" href="C1.Win.FlexGrid.Column.html">Column</a> 
objects, as shown in the example below.</p>
</div>
  <h5 id="C1_Win_FlexGrid_CellStyle_examples"><strong>Examples</strong></h5>
  <p>The example below creates three <a class="xref" href="C1.Win.FlexGrid.CellStyle.html">CellStyle</a> objects and assigns them to grid rows, columns,
and cell ranges.</p>
<pre><code class="lang-csharp">// create style with red background
CellStyle cs = _flex.Styles.Add("red");
Style.BackColor = Color.Red;

// create style with green background
cs = _flex.Styles.Add("green");
Style.BackColor = Color.Green;

// create style with bold font
cs = _flex.Styles.Add("bold");
Style.Font = new Font("Tahoma", 8, FontStyle.Bold);

// assign red style to a column
_flex.Cols[3].Style = _flex.Styles["red"];

// assign green style to a row
_flex.Rows[3].Style = _flex.Styles["green"];

// assign bold style to a cell range
CellRange rg = _flex.GetCellRange(2, 2, 4, 4);
rg.Style = _flex.Styles["bold"];</code></pre>
<p>After running this code, the third column of the grid will be painted with a red background. The 
third row will be painted with a green background. The cell at the intersection will be painted
in red, because column styles have priority over row styles. The remaining style elements for these
cells (font, alignment, etc) are not defined in the new styles and are automatically inherited from 
the parent style (<a class="xref" href="C1.Win.FlexGrid.CellStyleCollection.Normal.html#C1_Win_FlexGrid_CellStyleCollection_Normal">Normal</a>).</p>
<p>The cells around the intersection will have a bold font. The style that defines the bold font
does not specify a background color, so that element is inherited from the parent style, which may be
the "red", "green", or "normal" styles.</p>

  <h3 id="properties">Properties
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_BackColor" data-uid="C1.Win.FlexGrid.CellStyle.BackColor">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.BackColor.html#C1_Win_FlexGrid_CellStyle_BackColor">BackColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the color used to paint the cell background.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_BackgroundImage" data-uid="C1.Win.FlexGrid.CellStyle.BackgroundImage">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.BackgroundImage.html#C1_Win_FlexGrid_CellStyle_BackgroundImage">BackgroundImage</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the style's background image.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_BackgroundImageLayout" data-uid="C1.Win.FlexGrid.CellStyle.BackgroundImageLayout">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.BackgroundImageLayout.html#C1_Win_FlexGrid_CellStyle_BackgroundImageLayout">BackgroundImageLayout</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the a value that determines how the style will scale and
position background image.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Border" data-uid="C1.Win.FlexGrid.CellStyle.Border">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Border.html#C1_Win_FlexGrid_CellStyle_Border">Border</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the CellBorder object associated with this style.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_ComboList" data-uid="C1.Win.FlexGrid.CellStyle.ComboList">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.ComboList.html#C1_Win_FlexGrid_CellStyle_ComboList">ComboList</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a pipe-delimited list of valid values.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_DataMap" data-uid="C1.Win.FlexGrid.CellStyle.DataMap">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.DataMap.html#C1_Win_FlexGrid_CellStyle_DataMap">DataMap</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets an <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.idictionary">IDictionary</a> used to associate cell values with display values.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_DataType" data-uid="C1.Win.FlexGrid.CellStyle.DataType">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.DataType.html#C1_Win_FlexGrid_CellStyle_DataType">DataType</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the data type for the style.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_DefinedElements" data-uid="C1.Win.FlexGrid.CellStyle.DefinedElements">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.DefinedElements.html#C1_Win_FlexGrid_CellStyle_DefinedElements">DefinedElements</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets which elements are defined in this style.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Display" data-uid="C1.Win.FlexGrid.CellStyle.Display">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Display.html#C1_Win_FlexGrid_CellStyle_Display">Display</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets whether to show images, text, or both.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_EditMask" data-uid="C1.Win.FlexGrid.CellStyle.EditMask">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.EditMask.html#C1_Win_FlexGrid_CellStyle_EditMask">EditMask</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the mask string used to edit values.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Editor" data-uid="C1.Win.FlexGrid.CellStyle.Editor">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Editor.html#C1_Win_FlexGrid_CellStyle_Editor">Editor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the custom editor used to edit cells that have this style.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Font" data-uid="C1.Win.FlexGrid.CellStyle.Font">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Font.html#C1_Win_FlexGrid_CellStyle_Font">Font</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the font used to paint text in the cell.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_ForeColor" data-uid="C1.Win.FlexGrid.CellStyle.ForeColor">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.ForeColor.html#C1_Win_FlexGrid_CellStyle_ForeColor">ForeColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the color of the text in the cell.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Format" data-uid="C1.Win.FlexGrid.CellStyle.Format">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Format.html#C1_Win_FlexGrid_CellStyle_Format">Format</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the format string used to display values.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_ImageAlign" data-uid="C1.Win.FlexGrid.CellStyle.ImageAlign">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.ImageAlign.html#C1_Win_FlexGrid_CellStyle_ImageAlign">ImageAlign</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the image alignment.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_ImageMap" data-uid="C1.Win.FlexGrid.CellStyle.ImageMap">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.ImageMap.html#C1_Win_FlexGrid_CellStyle_ImageMap">ImageMap</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets an <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.idictionary">IDictionary</a> used to associate cell values with images.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_ImageSpacing" data-uid="C1.Win.FlexGrid.CellStyle.ImageSpacing">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.ImageSpacing.html#C1_Win_FlexGrid_CellStyle_ImageSpacing">ImageSpacing</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the space between images and text in a cell, in pixels.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Margins" data-uid="C1.Win.FlexGrid.CellStyle.Margins">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Margins.html#C1_Win_FlexGrid_CellStyle_Margins">Margins</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the margins between the edges of the cell and its contents, in pixels.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Name" data-uid="C1.Win.FlexGrid.CellStyle.Name">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Name.html#C1_Win_FlexGrid_CellStyle_Name">Name</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the style name.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_SearchBackColor" data-uid="C1.Win.FlexGrid.CellStyle.SearchBackColor">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.SearchBackColor.html#C1_Win_FlexGrid_CellStyle_SearchBackColor">SearchBackColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the background color of the searched text in the cell.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_StringFormat" data-uid="C1.Win.FlexGrid.CellStyle.StringFormat">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.StringFormat.html#C1_Win_FlexGrid_CellStyle_StringFormat">StringFormat</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the <a class="xref" href="C1.Win.FlexGrid.CellStyle.StringFormat.html#C1_Win_FlexGrid_CellStyle_StringFormat">StringFormat</a> element used for rendering
strings when the <a class="xref" href="C1.Win.FlexGrid.C1FlexGridBase.UseCompatibleTextRendering.html#C1_Win_FlexGrid_C1FlexGridBase_UseCompatibleTextRendering">UseCompatibleTextRendering</a>
property is set to true.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_TextAlign" data-uid="C1.Win.FlexGrid.CellStyle.TextAlign">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.TextAlign.html#C1_Win_FlexGrid_CellStyle_TextAlign">TextAlign</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the text alignment.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_TextDirection" data-uid="C1.Win.FlexGrid.CellStyle.TextDirection">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.TextDirection.html#C1_Win_FlexGrid_CellStyle_TextDirection">TextDirection</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the text direction.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_TextEffect" data-uid="C1.Win.FlexGrid.CellStyle.TextEffect">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.TextEffect.html#C1_Win_FlexGrid_CellStyle_TextEffect">TextEffect</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the 3D effect used to paint text.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Trimming" data-uid="C1.Win.FlexGrid.CellStyle.Trimming">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Trimming.html#C1_Win_FlexGrid_CellStyle_Trimming">Trimming</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets how long strings are trimmed to fit the cell.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_UserData" data-uid="C1.Win.FlexGrid.CellStyle.UserData">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.UserData.html#C1_Win_FlexGrid_CellStyle_UserData">UserData</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets arbitrary user data associated with this style.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_WordWrap" data-uid="C1.Win.FlexGrid.CellStyle.WordWrap">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.WordWrap.html#C1_Win_FlexGrid_CellStyle_WordWrap">WordWrap</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets whether long strings should automatically wrap within the cell.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_BuildString" data-uid="C1.Win.FlexGrid.CellStyle.BuildString">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.BuildString.html#C1_Win_FlexGrid_CellStyle_BuildString">BuildString()</a>
        </td>
        <td class="markdown level1 summary"><p>Returns a compact string representation of this <a class="xref" href="C1.Win.FlexGrid.CellStyle.html">CellStyle</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_BuildString_C1_Win_FlexGrid_StyleElementFlags_" data-uid="C1.Win.FlexGrid.CellStyle.BuildString(C1.Win.FlexGrid.StyleElementFlags)">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.BuildString.html#C1_Win_FlexGrid_CellStyle_BuildString_C1_Win_FlexGrid_StyleElementFlags_">BuildString(StyleElementFlags)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns a string representation of this <a class="xref" href="C1.Win.FlexGrid.CellStyle.html">CellStyle</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Clear" data-uid="C1.Win.FlexGrid.CellStyle.Clear">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Clear.html#C1_Win_FlexGrid_CellStyle_Clear">Clear()</a>
        </td>
        <td class="markdown level1 summary"><p>Clears all elements in this style.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Clear_C1_Win_FlexGrid_StyleElementFlags_" data-uid="C1.Win.FlexGrid.CellStyle.Clear(C1.Win.FlexGrid.StyleElementFlags)">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Clear.html#C1_Win_FlexGrid_CellStyle_Clear_C1_Win_FlexGrid_StyleElementFlags_">Clear(StyleElementFlags)</a>
        </td>
        <td class="markdown level1 summary"><p>Clears selected elements from this style.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Equals_System_Object_" data-uid="C1.Win.FlexGrid.CellStyle.Equals(System.Object)">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Equals.html#C1_Win_FlexGrid_CellStyle_Equals_System_Object_">Equals(object)</a>
        </td>
        <td class="markdown level1 summary"><p>Determines whether two <a class="xref" href="C1.Win.FlexGrid.CellStyle.html">CellStyle</a> objects are equal.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_GetContentRectangle_System_Drawing_Rectangle_" data-uid="C1.Win.FlexGrid.CellStyle.GetContentRectangle(System.Drawing.Rectangle)">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.GetContentRectangle.html#C1_Win_FlexGrid_CellStyle_GetContentRectangle_System_Drawing_Rectangle_">GetContentRectangle(Rectangle)</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the content portion of a cell's rectangle.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_GetHashCode" data-uid="C1.Win.FlexGrid.CellStyle.GetHashCode">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.GetHashCode.html#C1_Win_FlexGrid_CellStyle_GetHashCode">GetHashCode()</a>
        </td>
        <td class="markdown level1 summary"><p>Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_GetImageRectangle_System_Drawing_Rectangle_System_Drawing_Image_System_Drawing_Image_" data-uid="C1.Win.FlexGrid.CellStyle.GetImageRectangle(System.Drawing.Rectangle,System.Drawing.Image,System.Drawing.Image)">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.GetImageRectangle.html#C1_Win_FlexGrid_CellStyle_GetImageRectangle_System_Drawing_Rectangle_System_Drawing_Image_System_Drawing_Image_">GetImageRectangle(Rectangle, Image, Image)</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the image portion of a cell's rectangle.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_GetTextRectangle_System_Drawing_Rectangle_System_Drawing_Image_System_Drawing_Image_" data-uid="C1.Win.FlexGrid.CellStyle.GetTextRectangle(System.Drawing.Rectangle,System.Drawing.Image,System.Drawing.Image)">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.GetTextRectangle.html#C1_Win_FlexGrid_CellStyle_GetTextRectangle_System_Drawing_Rectangle_System_Drawing_Image_System_Drawing_Image_">GetTextRectangle(Rectangle, Image, Image)</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the text portion of a cell's rectangle.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_MergeWith_C1_Win_FlexGrid_CellStyle_" data-uid="C1.Win.FlexGrid.CellStyle.MergeWith(C1.Win.FlexGrid.CellStyle)">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.MergeWith.html#C1_Win_FlexGrid_CellStyle_MergeWith_C1_Win_FlexGrid_CellStyle_">MergeWith(CellStyle)</a>
        </td>
        <td class="markdown level1 summary"><p>Copies all elements defined in a source style to this style.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_ParseString_System_String_" data-uid="C1.Win.FlexGrid.CellStyle.ParseString(System.String)">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.ParseString.html#C1_Win_FlexGrid_CellStyle_ParseString_System_String_">ParseString(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Rebuilds this style based on a description contained in a string.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Render_System_Drawing_Graphics_System_Drawing_Rectangle_System_Drawing_Image_C1_Win_FlexGrid_DrawColorMode_" data-uid="C1.Win.FlexGrid.CellStyle.Render(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Image,C1.Win.FlexGrid.DrawColorMode)">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Render.html#C1_Win_FlexGrid_CellStyle_Render_System_Drawing_Graphics_System_Drawing_Rectangle_System_Drawing_Image_C1_Win_FlexGrid_DrawColorMode_">Render(Graphics, Rectangle, Image, DrawColorMode)</a>
        </td>
        <td class="markdown level1 summary"><p>Renders a string and an image into a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.graphics">Graphics</a> object using this style.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Render_System_Drawing_Graphics_System_Drawing_Rectangle_System_String_C1_Win_FlexGrid_DrawColorMode_" data-uid="C1.Win.FlexGrid.CellStyle.Render(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,C1.Win.FlexGrid.DrawColorMode)">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Render.html#C1_Win_FlexGrid_CellStyle_Render_System_Drawing_Graphics_System_Drawing_Rectangle_System_String_C1_Win_FlexGrid_DrawColorMode_">Render(Graphics, Rectangle, string, DrawColorMode)</a>
        </td>
        <td class="markdown level1 summary"><p>Renders a string and an image into a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.graphics">Graphics</a> object using this style.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Render_System_Drawing_Graphics_System_Drawing_Rectangle_System_String_System_Drawing_Image_C1_Win_FlexGrid_DrawCellFlags_C1_Win_FlexGrid_DrawColorMode_" data-uid="C1.Win.FlexGrid.CellStyle.Render(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Image,C1.Win.FlexGrid.DrawCellFlags,C1.Win.FlexGrid.DrawColorMode)">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Render.html#C1_Win_FlexGrid_CellStyle_Render_System_Drawing_Graphics_System_Drawing_Rectangle_System_String_System_Drawing_Image_C1_Win_FlexGrid_DrawCellFlags_C1_Win_FlexGrid_DrawColorMode_">Render(Graphics, Rectangle, string, Image, DrawCellFlags, DrawColorMode)</a>
        </td>
        <td class="markdown level1 summary"><p>Renders a string and an image into a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.graphics">Graphics</a> object using this style.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_Render_System_Drawing_Graphics_System_Drawing_Rectangle_System_String_System_Drawing_Image_C1_Win_FlexGrid_DrawColorMode_" data-uid="C1.Win.FlexGrid.CellStyle.Render(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Image,C1.Win.FlexGrid.DrawColorMode)">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.Render.html#C1_Win_FlexGrid_CellStyle_Render_System_Drawing_Graphics_System_Drawing_Rectangle_System_String_System_Drawing_Image_C1_Win_FlexGrid_DrawColorMode_">Render(Graphics, Rectangle, string, Image, DrawColorMode)</a>
        </td>
        <td class="markdown level1 summary"><p>Renders a string and an image into a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.graphics">Graphics</a> object using this style.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_ResetFont" data-uid="C1.Win.FlexGrid.CellStyle.ResetFont">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.ResetFont.html#C1_Win_FlexGrid_CellStyle_ResetFont">ResetFont()</a>
        </td>
        <td class="markdown level1 summary"></td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_CellStyle_ShouldSerializeFont" data-uid="C1.Win.FlexGrid.CellStyle.ShouldSerializeFont">
          <a class="xref" href="C1.Win.FlexGrid.CellStyle.ShouldSerializeFont.html#C1_Win_FlexGrid_CellStyle_ShouldSerializeFont">ShouldSerializeFont()</a>
        </td>
        <td class="markdown level1 summary"></td>
      </tr>
    </tbody>
  </table>

</div>
