| GUILayoutStringTableAddTextColumn Method (String, String, LocalizableMessage, GUIStyle) | 
 Adds a text column into the table with a value tooltip.
 
    Namespace: 
   KSPDev.GUIUtils
    Assembly:
   KSPDev_Utils.2.3 (in KSPDev_Utils.2.3.dll) Version: 2.3 for KSP v1
 Syntax
Syntaxpublic void AddTextColumn(
	string text,
	string tooltip,
	LocalizableMessage message,
	GUIStyle style = null
)
Parameters
- text
- Type: SystemString
 The text to add.
- tooltip
- Type: SystemString
 The tooltip for the column value. Note, that the tooltip is not handled by the table, it gets
            rendered by the Unity GUI functionality, which may need to be configured.
- message
- Type: KSPDev.GUIUtilsLocalizableMessage
 The localizable message to get the minimum size from.
- style (Optional)
- Type: UnityEngineGUIStyle
 The style to apply to the text. If not set, then GUI.skin.label is used.
 See Also
See Also