Class RadOffice2007ScreenTip
Represents an Office 2007-styled screen tip control that displays tooltips with rich content. This control provides specific Office 2007 visual styling and behaviors.
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class RadOffice2007ScreenTip : RadScreenTip, INotifyPropertyChanged, ISupportInitializeNotification, ISupportInitialize, IComponentTreeHandler, ILayoutHandler, IPCHost, IAnalyticsProvider, IScreenTipContent
Remarks
RadOffice2007ScreenTip inherits from RadScreenTip and implements a screen tip with Office 2007-specific styling. It allows customization of caption and footer visibility.
Constructors
RadOffice2007ScreenTip()
Initializes a new instance of the RadOffice2007ScreenTip class.
Declaration
public RadOffice2007ScreenTip()
Properties
CaptionVisible
Gets or sets a value indicating whether the caption section of the screen tip is visible.
Declaration
public bool CaptionVisible { get; set; }
Property Value
System.Boolean
|
Remarks
When set to false
, the caption section of the screen tip will be hidden,
resulting in a more compact appearance.
FooterVisible
ScreenTipElement
Gets the instance of RadScreenTipElement wrapped by this control. RadScreenTipElement is the main element in the hierarchy tree and encapsulates the actual functionality of RadScreenTip.
Declaration
public override RadScreenTipElement ScreenTipElement { get; }
Property Value
RadScreenTipElement
|
Overrides
Remarks
The returned element is of type RadOffice2007ScreenTipElement which provides the Office 2007 specific implementation of screen tip functionality.
TemplateType
Gets or sets the template type for the screen tip.
Declaration
public override Type TemplateType { get; set; }
Property Value
System.Type
|
Overrides
Remarks
The getter returns the type of RadOffice2007ScreenTipElement. The setter is implemented to fulfill the abstract property requirement but doesn't perform any action as the template type is fixed for this implementation.
Methods
CreateChildItems(RadElement)
Creates the child elements that make up the RadOffice2007ScreenTip control.
Declaration
protected override void CreateChildItems(RadElement parent)
Parameters
RadElement
parent
The parent element to which child elements will be added. |
Overrides
Remarks
This method initializes the RadOffice2007ScreenTipElement instance and adds it to the RootElement children collection.