Spread Windows Forms 9.0 Product Documentation
SelectionRenderer Property (FpSpread)
Example 


Gets or sets the selection renderer for drawing selections in the component.
Syntax
'Declaration
 
Public Property SelectionRenderer As ISelectionRenderer
'Usage
 
Dim instance As FpSpread
Dim value As ISelectionRenderer
 
instance.SelectionRenderer = value
 
value = instance.SelectionRenderer
public ISelectionRenderer SelectionRenderer {get; set;}

Property Value

ISelectionRenderer instance
Remarks

This property is available at run time only.

Example
This example sets an instance of the ISelectionRenderer interface used for drawing selections.
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);
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 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

FpSpread Class
FpSpread Members

User-Task Documentation

Customizing the Selection Indicator

 

 


Copyright © GrapeCity, inc. All rights reserved.