# C1.Win.List.ListBase.C1ListBase.CellTips

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_Win_List_ListBase_C1ListBase_CellTips_" data-uid="C1.Win.List.ListBase.C1ListBase.CellTips*">CellTips Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_Win_List_ListBase_C1ListBase_CellTips_" data-uid="C1.Win.List.ListBase.C1ListBase.CellTips*"></a>
<h4 id="C1_Win_List_ListBase_C1ListBase_CellTips" data-uid="C1.Win.List.ListBase.C1ListBase.CellTips">CellTips</h4>
<div class="markdown level1 summary"><p>Determines whether the list displays a pop-up text window when the cursor is idle.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">[Layout]
public CellTipEnum CellTips { get; set; }</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">&lt;Layout&gt;
Public Property CellTips As CellTipEnum</code></pre>
</div>
<h5 id="C1_Win_List_ListBase_C1ListBase_CellTips_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>
The CellTips property determines whether the list displays a pop-up text window when the cursor is idle.  
By default, this property is set to NoCellTips, and cell tips are not displayed.
</p>
<p>
If the CellTips property is set to either Anchored or Floating, 
the <a class="xref" href="C1.Win.List.ListBase.C1ListBase.FetchCellTips.html">FetchCellTips</a> event will be fired whenever the list has focus and the cursor is 
idle over a list cell, record selector, column header, split header, or list caption. The event will not fire if 
the cursor is over the scroll bars.
</p>
<p>
The setting Anchored aligns the cell tip window with either the left or right edge of the cell. 
The left edge is favored, but the right edge will be used if necessary in order to display as much text as possible.
</p>
<p>
The setting Floating displays the cell tip window below the cursor, if possible.
</p>
<p>
If you do not provide a handler for the FetchCellTips event, and the cursor is over a list cell, 
the default behavior is to display a text box containing the cell's contents (up to 256 characters). 
This enables the user to peruse the contents of a cell even if it is not big enough to be displayed in its entirety. 
You can also program the FetchCellTips event to override the default cell text display in order to provide users with 
context-sensitive help.
</p>
</div>
</div>
