DockingGuidesElement
Definition
Namespace:Telerik.WinControls.UI.Docking
Assembly:Telerik.WinControls.RadDock.dll
Syntax:
public class DockingGuidesElement : RadItem, INotifyPropertyChanged, ICustomTypeDescriptor, ISupportSystemSkin, IBindableComponent, IComponent, IDisposable, ISupportDrag, ISupportDrop, IShortcutProvider, IStylableElement, IStylableNode
Inheritance: objectDisposableObjectRadObjectRadElementVisualElementRadComponentElementRadItemDockingGuidesElement...
Implements:
Inherited Members
Constructors
public DockingGuidesElement()
Fields
public static RadProperty CollapsedInnerImageCoefficientProperty
public static RadProperty DockingHintBackColorProperty
public static RadProperty DockingHintBorderColorProperty
public static RadProperty DockingHintBorderWidthProperty
Properties
public DockingGuideImageElement BottomImage { get; }
public DockingGuideImageElement CenterBackgroundImage { get; }
public float CollapsedInnerImageCoefficient { get; set; }
public Color DockingHintBackColor { get; set; }
public Color DockingHintBorderColor { get; set; }
public int DockingHintBorderWidth { get; set; }
public DockingGuideImageElement FillImage { get; }
public DockingGuideImageElement InnerBottomImage { get; }
public DockingGuideImageElement InnerLeftImage { get; }
public DockingGuideImageElement InnerRightImage { get; }
public DockingGuideImageElement InnerTopImage { get; }
public DockingGuideImageElement LeftImage { get; }
public DockingGuideImageElement RightImage { get; }
public IDockingGuidesTemplate Template { get; set; }
public DockingGuideImageElement TopImage { get; }
Methods
Arranges the RadElement to its final location. The element must call the Arrange method of each of its children.
protected override SizeF ArrangeOverride(SizeF finalSize)
The size that is available for element.
Returns:The rectangle occupied by the element. Usually finalSize. Should you return different size, the Layout system will restart measuring and rearranging the items. That could lead to infinite recursion.
Overrides:
In this method call to the Arrange method of each child must be made.
Called by the element when constructed. Allows inheritors to build the element tree.
protected override void CreateChildElements()
Overrides:
Initializes the fields of this instance with their default values.
protected override void InitializeFields()
Overrides:
Measures the space required by the RadElement
Used by the layout system.
protected override SizeF MeasureOverride(SizeF availableSize)
The size that is available to the RadElement. The available size can be infinity (to take the full size of the element)
Returns:The minimum size required by the element to be completely visible. Cannot be infinity.
Overrides:
In this method call to the Measure method of each child must be made.