Represents an Office 2007-styled screen tip control that displays tooltips with rich content. This control provides specific Office 2007 visual styling and behaviors.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
public class RadOffice2007ScreenTip : RadScreenTip, IDropTarget, ISynchronizeInvoke, IWin32Window, IBindableComponent, IComponent, IDisposable, INotifyPropertyChanged, ISupportInitializeNotification, ISupportInitialize, IComponentTreeHandler, ILayoutHandler, IAnalyticsProvider, IScreenTipContent
Inheritance: objectMarshalByRefObjectComponentControlScrollableControlRadControlRadScreenTipRadOffice2007ScreenTip...
Implements:
Inherited Members
Constructors
Initializes a new instance of the RadOffice2007ScreenTip class.
public RadOffice2007ScreenTip()
Properties
Gets or sets a value indicating whether the caption section of the screen tip is visible.
public bool CaptionVisible { get; set; }
true if the caption is visible; otherwise, false. The default value is true.
When set to false, the caption section of the screen tip will be hidden,
resulting in a more compact appearance.
Gets or sets a value indicating whether the footer section of the screen tip is visible.
public bool FooterVisible { get; set; }
true if the footer is visible; otherwise, false. The default value is false.
When set to true, the footer section including a separator line and footer text
will be displayed at the bottom of the screen tip.
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.
[Browsable(false)]
[TypeConverter(typeof(ExpandableObjectConverter))]
public override RadScreenTipElement ScreenTipElement { get; }
Overrides:
The returned element is of type RadOffice2007ScreenTipElement which provides the Office 2007 specific implementation of screen tip functionality.
Gets or sets the template type for the screen tip.
public override Type TemplateType { get; set; }
Overrides:
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
Creates the child elements that make up the RadOffice2007ScreenTip control.
protected override void CreateChildItems(RadElement parent)
The parent element to which child elements will be added.
Overrides:
This method initializes the RadOffice2007ScreenTipElement instance and adds it to the RootElement children collection.