Skip to content

format

typescript
DataLibrary.ClearFiles()

class: DataLibrary

description

Clears all data.

parameter

param_nametypedescription

reture

typedescription
void

code example

typescript
let library = DataLibrary.projectLibrary;
let key = "testdata";
let content = "abcdefg";
// Set data
library.SetData(key,content);

library.ClearFiles();