Custom Nodes Square9.CustomNode SDK Methods Current: GetBooleanSetting Method GetBooleanSetting Method Gets a bool value from the NodeSettings dictionary by setting name. public string GetBooleanSetting(string name) CODE Classes: Settings Parametersvalue nameSetting name corresponding with the dictionary key inside of NodeSettings ReturnsboolA boolean value. ExampleThe following example demonstrates getting a boolean value from a boolean setting. var boolSetting = Settings.GetBooleanSetting("Boolean Setting"); CODE RemarksThrows a KeyNotFoundException if no setting exists by the parameter name.Throws an InvalidCastException if the target setting is not of SettingType.Boolean.Throws an InvalidOperationException if the target setting has no BooleanValue. ×