ImageEn, unit ievision

TIEVisionPropertyTree.putString

TIEVisionPropertyTree.putString


Declaration

procedure putString(keypath: PAnsiChar; value: PAnsiChar); overload; safecall;
procedure putString(keypath: PAnsiChar; value: TIEVisionString); overload; safecall;


Description

Add an ANSI string or string object to the property tree, using the specified key path.
A key path is a list of words separated by periods (ie: "image.size.width").

Parameter Description
keypath Path of the key to put
value Value to put


Example

propertytree1.putString('image.size.width', 640);
propertytree1.putString('image.size.height', 480);