Table of Contents

Class SubstringScriptType

Namespace
Dynamicweb.DataIntegration.Integration.ScriptTypes
Assembly
Dynamicweb.DataIntegration.dll
[AddInLabel("Substring")]
public class SubstringScriptType : ScriptTypeProvider<string>
Inheritance
SubstringScriptType
Inherited Members

Properties

AllowedTypes

public override IEnumerable<Type> AllowedTypes { get; set; }

Property Value

IEnumerable<Type>

Length

[AddInParameter("Length")]
[AddInLabel("Length")]
[AddInParameterGroup("Scripting")]
[AddInParameterEditor(typeof(NumberParameterEditor), "")]
public int Length { get; set; }

Property Value

int

StartIndex

[AddInParameter("StartIndex")]
[AddInLabel("Start index")]
[AddInParameterGroup("Scripting")]
[AddInParameterEditor(typeof(NumberParameterEditor), "")]
public int StartIndex { get; set; }

Property Value

int

Methods

GetValueTyped(object?)

public override string GetValueTyped(object? input)

Parameters

input object

Returns

string

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.

To top