Houdini 20.0 hapi

hapi.getString function

Gives back the string value of the string with the

Usage

getString(session: hapi.Session, string_handle: int, length: int) → str

Gives back the string value of the string with the given handle.

session

The session of Houdini you are interacting with. See hapi.Session for more on sessions. Pass None to just use the default in-process session.

string_handle

Handle of the string to query.

length

Length of the string buffer (must match size of string_value - so including None terminator).

Returns string_value as a str.

hapi