DekGenius.com
[ Team LiB ] Previous Section Next Section

TabPagemarshal by reference, disposable

System.Windows.Forms (system.windows.forms.dll)class

This Panel control is used as a container for a page of Control objects to be displayed in a TabControl.

See TabControl for more information.

public class TabPage : Panel {
// Public Constructors
   public TabPage();
   public TabPage(string text);
// Public Instance Properties
   public override AnchorStyles Anchor{set; get; }
// overrides Control
   public override DockStyle Dock{set; get; }
// overrides Control
   public bool Enabled{set; get; }
// overrides Control
   public int ImageIndex{set; get; }
   public int TabIndex{set; get; }
// overrides Control
   public bool TabStop{set; get; }
// overrides Panel
   public override string Text{set; get; }
// overrides Panel
   public string ToolTipText{set; get; }
   public bool Visible{set; get; }
// overrides Control
// Public Static Methods
   public static TabPage GetTabPageOfComponent(object comp);
// Public Instance Methods
   public override string ToString();  // overrides Panel
// Protected Instance Methods
   protected override ControlCollection CreateControlsInstance();  // overrides Control
   protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified);  // overrides Control
}

Hierarchy

System.Object System.MarshalByRefObject System.ComponentModel.Component(System.ComponentModel.IComponen, System.IDisposable) Control(IOleContro, IOleObject, IOleInPlaceObject, IOleInPlaceActiveObject, IOleWindow, IViewObject, IViewObject2, IPersist, IPersistStreamInit, IPersistPropertyBag, IPersistStorage, IQuickActivate, System.ComponentModel.ISynchronizeInvoke, IWin32Window) ScrollableControl Panel TabPage

Returned By

TabControl.SelectedTab, TabPageCollection.this

Passed To

TabControl.SelectedTab, TabPageCollection.{Add(), AddRange(), Contains(), IndexOf(), Remove(), this}, TabPageControlCollection.TabPageControlCollection()

    [ Team LiB ] Previous Section Next Section