Gets or sets the selection renderer for drawing selections in the component.
Syntax
Remarks
Example
This example sets an instance of the ISelectionRenderer interface used for drawing selections.
C# | Copy Code |
---|
public class SelectionRenderer : FarPoint.Win.Spread.ISelectionRenderer
{
public void PaintSelection(Graphics g, int x, int y, int width, int height)
{
SolidBrush selectionBrush = new SolidBrush(Color.FromArgb(100, SystemColors.ControlDark));
g.FillRectangle(selectionBrush, x, y, width, height);
selectionBrush.Dispose();
}
}
FarPoint.Win.Spread.FpSpread fpSpread1 = new FarPoint.Win.Spread.FpSpread();
FarPoint.Win.Spread.SheetView shv = new FarPoint.Win.Spread.SheetView();
SelectionRenderer sr = new SelectionRenderer();
fpSpread1.Location = new Point(10, 10);
fpSpread1.Height = 200;
fpSpread1.Width = 400;
Controls.Add(fpSpread1);
fpSpread1.Sheets.Add(shv);
fpSpread1.SelectionRenderer = sr;
fpSpread1.ActiveSheet.AddSelection(0, 0, 2, 2); |
Visual Basic | Copy Code |
---|
Public Class SelectionRenderer
Implements FarPoint.Win.Spread.ISelectionRenderer
Public Sub PaintSelection(ByVal g As Graphics, ByVal x As Integer, ByVal y As Integer, ByVal width As Integer, ByVal height
As Integer) Implements FarPoint.Win.Spread.ISelectionRenderer.PaintSelection
Dim selectionBrush As New SolidBrush(Color.FromArgb(100, SystemColors.ControlDark))
g.FillRectangle(selectionBrush, x, y, width, height)
selectionBrush.Dispose()
End Sub
End Class
Dim fpSpread1 As New FarPoint.Win.Spread.FpSpread()
Dim shv As New FarPoint.Win.Spread.SheetView()
Dim sr As New SelectionRenderer()
fpSpread1.Location = New Point(10, 10)
fpSpread1.Height = 200
fpSpread1.Width = 400
Controls.Add(fpSpread1)
fpSpread1.Sheets.Add(shv)
fpSpread1.SelectionRenderer = sr
fpSpread1.ActiveSheet.AddSelection(0, 0, 2, 2) |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also