Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 917 Bytes

File metadata and controls

49 lines (39 loc) · 917 Bytes

DelSavedSettings

Description

Delete all saved settings in the specified category.

FUNCTION DelSavedSettings(category : STRING): BOOLEAN;
def vs.DelSavedSettings(category):
    return BOOLEAN

Parameters

Name Type Description
category STRING The category to be deleted.

Examples

BEGIN
	B := DelSavedSettings(kSavSetCat);
	B := DelSavedSettings(kOldSavSetCat);
import vs

# Delete all saved settings in the specified category.
category = 'Example'

ok = vs.DelSavedSettings(category)
if ok:
    vs.Message('DelSavedSettings succeeded')
else:
    vs.Message('DelSavedSettings failed')

See Also

VS Functions: DelSavedSetting | SetSavedSetting | GetSavedSetting

Version

Availability: from Vectorworks 2014

Category