Overview
Returns the length (in characters) of the given zero terminated string.
(number) Address of Memory.
(number) Returns the length (in characters) of the given zero terminated string.
When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.
mem = Memory.Allocate(1024) Memory.PutString(mem, "Hi", -1, "Ascii") Dialog.Message("Size of String in Memory", Memory.SizeString(mem)) Memory.Free(mem)
See also: Related Actions