DTextEntry:GetTextColor
Description
Returns the text color of a DTextEntry.
Returns
Example
local TextEntry = vgui.Create( "DTextEntry" )
TextEntry:SetTextColor( Color( 255, 0, 0, 255 ))
PrintTable( TextEntry:GetTextColor() )
Output: Prints the R, G, B and A of the text color.