Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / TabStripPolicy Enumeration
Example Example


In This Topic
    TabStripPolicy Enumeration
    In This Topic
    Specifies when the component displays the sheet name tabs.
    Syntax
    'Declaration
     
    Public Enum TabStripPolicy 
       Inherits System.Enum
    'Usage
     
    Dim instance As TabStripPolicy
    public enum TabStripPolicy : System.Enum 
    Members
    MemberDescription
    Always Always displays the sheet tabs
    AsNeeded Displays the sheet tabs only when needed
    Never Does not display the sheet tabs
    Example
    fpSpread1.Sheets.Count = 3;
    fpSpread1.TabStripPolicy = FarPoint.Win.Spread.TabStripPolicy.AsNeeded;
    
    FpSpread1.Sheets.Count = 3
    FpSpread1.TabStripPolicy = FarPoint.Win.Spread.TabStripPolicy.AsNeeded
    
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             FarPoint.Win.Spread.TabStripPolicy

    See Also