Table of Contents

Constructor IndexOf

Namespace
YndigoBlue.Velocity.Functions
Assembly
YndigoBlue.Velocity.dll

IndexOf(Column, string)

Initializes a new instance of IndexOf with a literal substring.

public IndexOf(Column stringColumn, string substringValue)

Parameters

stringColumn Column

The string column to search within.

substringValue string

The substring to find.

IndexOf(Column, Column)

Initializes a new instance of IndexOf with a column-based substring.

public IndexOf(Column stringColumn, Column substringColumn)

Parameters

stringColumn Column

The string column to search within.

substringColumn Column

The column containing the substring to find.

IndexOf(Expression, string)

Initializes a new instance of IndexOf for a string expression.

public IndexOf(Expression stringExpression, string substringValue)

Parameters

stringExpression Expression

The string expression to search within.

substringValue string

The substring to find.

IndexOf(IElement, IElement)

Initializes a new instance of IndexOf with generic elements.

public IndexOf(IElement substringElement, IElement stringElement)

Parameters

substringElement IElement

The element containing the substring to find.

stringElement IElement

The string element to search within.