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