Table of Contents

SheetSelectorEntryEventArgs Class

Arguments passed on FlexCel.Render.TStandardSheetSelector.OnSheetSelectorEntry.

Syntax

Namespace: FlexCel.Render

public class SheetSelectorEntryEventArgs: EventArgs

Constructors

Name Description
SheetSelector​Entry​Event​Args Creates a new Argument.

Properties

Name Description
Workbook ExcelFile we are drawing the sheet selector in, positioned in the sheet that we are rendering.
Make sure if you modify ActiveSheet of this instance to restore it back to the original value before exiting the event.
ActiveSheet Sheet index of the entry. This is equivalent to Workbook.ActiveSheet
RenderingSheet Sheet we are currently rendering. You can compare if (RenderingSheet == ActiveSheet) to highlight the active sheet when drawing the selector.
Link Place where this entry should link to.
EntryText Text that will be written in this cell of the selector.
LinkNeedsEscaping If true (the default) the link you provide in Link is not escaped and will be escaped by FlexCel.
So for example, the link "http://my site" will be escaped to "http:​//​my%​20site"​.​
If the link you provided was already escaped, then set this variable to false.