Creates a new XllFunctionAttribute object.

Namespace:  XllPlus
Assembly:  Psl.XL7.XnReflect.Runtime (in Psl.XL7.XnReflect.Runtime.dll) Version: 7.0.9.1411 (7.0.9.1411)

Syntax

C#
public XllFunctionAttribute(
	string exportedName,
	XlFunctionFlags flags,
	string prefix,
	bool shouldExport,
	string description
)
Visual Basic (Declaration)
Public Sub New ( _
	exportedName As String, _
	flags As XlFunctionFlags, _
	prefix As String, _
	shouldExport As Boolean, _
	description As String _
)
Visual C++
public:
XllFunctionAttribute(
	String^ exportedName, 
	XlFunctionFlags flags, 
	String^ prefix, 
	bool shouldExport, 
	String^ description
)

Parameters

exportedName
Type: System..::.String
The name of the function in Excel.
flags
Type: XllPlus..::.XlFunctionFlags
A set of flags controlling the behavior of the function.
prefix
Type: System..::.String
A prefix which preceds the name of the function in Excel.
shouldExport
Type: System..::.Boolean
Whether the function shoud be exported.
description
Type: System..::.String
The help text for the function, which will appear in the Excel Formula Wizard.

See Also