Class LoadFunctionFunctionParamsBase
Base class for parameter classes for Load functions
Inheritance
System.Object
LoadFunctionFunctionParamsBase
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: OfficeOpenXml.LoadFunctions
Assembly: EPPlus.dll
Syntax
public abstract class LoadFunctionFunctionParamsBase
Properties
PrintHeaders
If true a row with headers will be added above the data
Declaration
public bool PrintHeaders { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
TableName
A custom name for the table, if created. The TableName must be unique within the workbook and be a valid table name.
Declaration
public string TableName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TableStyle
If set to another value than TableStyles.None the data will be added to a table with the specified style
Declaration
public TableStyles? TableStyle { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<TableStyles> |
UseBuiltInStylesForHyperlinks
If true, EPPlus will add the built in (default) styles for hyperlinks and apply them on any member that is of the System.Uri or ExcelHyperLink types. Default value is true.
Declaration
public bool UseBuiltInStylesForHyperlinks { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |