Namespace: Cartella.Models
Assembly: CartellaDomainModels (in CartellaDomainModels.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
public static string ImageActionLink(
	this HtmlHelper helper,
	bool isCartellaAsset,
	string imageSrc,
	string imgAltText,
	int imageWidth,
	int imageHeight,
	string action,
	string controller,
	Object routeValues,
	Object anchorAttributes
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function ImageActionLink ( _
	helper As HtmlHelper, _
	isCartellaAsset As Boolean, _
	imageSrc As String, _
	imgAltText As String, _
	imageWidth As Integer, _
	imageHeight As Integer, _
	action As String, _
	controller As String, _
	routeValues As Object, _
	anchorAttributes As Object _
) As String
Visual C++
[ExtensionAttribute]
public:
static String^ ImageActionLink(
	HtmlHelper^ helper, 
	bool isCartellaAsset, 
	String^ imageSrc, 
	String^ imgAltText, 
	int imageWidth, 
	int imageHeight, 
	String^ action, 
	String^ controller, 
	Object^ routeValues, 
	Object^ anchorAttributes
)

Parameters

helper
Type: HtmlHelper
isCartellaAsset
Type: System..::..Boolean
imageSrc
Type: System..::..String
imgAltText
Type: System..::..String
imageWidth
Type: System..::..Int32
imageHeight
Type: System..::..Int32
action
Type: System..::..String
controller
Type: System..::..String
routeValues
Type: System..::..Object
anchorAttributes
Type: System..::..Object

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type HtmlHelper. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also