DropzoneRetrieveInformationFromFilename Property

General info

Label

Filename holds information

Description

Specifies whether the filename shall be looked up for additional information in general.

Data type

Boolean

Type

Regular

Code

1155

Symbolic name

MODEL_PROP_DROPZONERETRIEVEINFORMATIONFROMFILENAME

Lua access code

syslib.model.properties.DropzoneRetrieveInformationFromFilename

Available since

1.0

Attributes

Name Tooltip
PROP_CONFIGURABLE The property is configurable and can be changed with DataStudio and the various inmation APIs.
PROP_VISIBLE The property is visible in DataStudio and can be read by the inmation APIs.

Examples

Read from or write to the DropzoneRetrieveInformationFromFilename property.

  • Lua

  • C#

-- Read from the DropzoneRetrieveInformationFromFilename
syslib.getvalue("<OBJECT FULL PATH>.DropzoneOptions.DropzoneFilenameProcessingOptions.DropzoneRetrieveInformationFromFilename")

-- Write to the DropzoneRetrieveInformationFromFilename
syslib.setvalue("<OBJECT FULL PATH>.DropzoneOptions.DropzoneFilenameProcessingOptions.DropzoneRetrieveInformationFromFilename", true)
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "<username>", Password = "<password>" };
StatelessInterface sli = new StatelessInterface(tcpcfg);

// Read from the DropzoneRetrieveInformationFromFilename
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.DropzoneOptions.DropzoneFilenameProcessingOptions.DropzoneRetrieveInformationFromFilename"));
// Write to the DropzoneRetrieveInformationFromFilename
Result result = sli.WriteValue(sc, new WriteItem(true, "<OBJECT FULL PATH>.DropzoneOptions.DropzoneFilenameProcessingOptions.DropzoneRetrieveInformationFromFilename"));