Spread Windows Forms 12.0 Product Documentation
IsCellPaddingSet Method (StyleInfo)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class : IsCellPaddingSet Method
Gets whether the cell padding of the cell is set.
Syntax
'Declaration
 
Public Overridable Function IsCellPaddingSet() As Boolean
'Usage
 
Dim instance As StyleInfo
Dim value As Boolean
 
value = instance.IsCellPaddingSet()
public virtual bool IsCellPaddingSet()
Example
This example uses the IsCellPaddingSet method.
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();           
si.CellPadding = new FarPoint.Win.Spread.CellPadding(2);
fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = si;            
listBox1.Items.Add(si.IsCellPaddingSet());
Dim si As New FarPoint.Win.Spread.StyleInfo()
si.CellPadding = New FarPoint.Win.Spread.CellPadding(2)
fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = si
ListBox1.Items.Add(si.IsCellPaddingSet())
See Also

Reference

StyleInfo Class
StyleInfo Members