using FastReport.Utils;
namespace FastReport
{
partial class ReportComponentBase
{
///
/// Does nothing
///
/// Draw event arguments.
public void DrawMarkers(FRPaintEventArgs e)
{
}
///
/// Copies event handlers from another similar object.
///
/// The object to copy handlers from.
public virtual void AssignPreviewEvents(Base source)
{
ReportComponentBase src = source as ReportComponentBase;
if (src == null)
return;
Click = src.Click;
}
///
/// Does nothing
///
///
///
protected bool DrawIntersectBackground(FRPaintEventArgs e)
{
return false;
}
}
}