Custom Nodes Square9.CustomNode SDK Methods Current: GetListSetting Method GetListSetting Method Gets a list value from the NodeSettings dictionary by setting name. public string GetListSetting(string name) CODE Classes: Settings Parametersvalue nameSetting name corresponding with the dictionary key inside of NodeSettings ReturnsList<string>A list of values. ExampleThe following example demonstrates getting a list of strings from a list type setting. var list = Settings.GetListSetting("List Setting"); CODE RemarksThrows a KeyNotFoundException if no setting exists by the parameter name.Throws an InvalidCastException if the target setting is not of SettingType.List. ×