Table of Contents

Class SaveInCSVFile

Namespace
Dynamicweb.DataManagement
Assembly
Dynamicweb.DataManagement.dll

Saves current configuration in csv-file

[AddInName("DM.Form.SaveInCSVFile")]
[AddInLabel("Save in file")]
[AddInDescription("This will save the form data in a CSV file.")]
public class SaveInCSVFile : FormSaveProvider, IParameterOptions
Inheritance
SaveInCSVFile
Implements
Inherited Members

Properties

SaveEncodingCodePage

[AddInParameterGroup("Save configuration")]
[AddInParameter("SaveInCSVFile.Encoding")]
[AddInLabel("Encoding")]
[AddInParameterEditor(typeof(DropDownParameterEditor), "NewGUI=true;SortBy=Value;none=False")]
public int SaveEncodingCodePage { get; set; }

Property Value

int

SaveOneFileADay

[AddInParameterGroup("Save configuration")]
[AddInParameter("SaveInCSVFile.OneFileADay")]
[AddInLabel("One file per day")]
[AddInParameterEditor(typeof(YesNoParameterEditor), "")]
public bool SaveOneFileADay { get; set; }

Property Value

bool

Methods

Save(FormSetting, Dictionary<string, object>)

Save form settings values

public override bool Save(FormSetting formSettings, Dictionary<string, object> keysAndValues)

Parameters

formSettings FormSetting

Form settings

keysAndValues Dictionary<string, object>

settings names and values

Returns

bool

True if saved successFully

To top