Answers for "google script get color of text"

C#
1

google sheet script change text color

myRange.setColor("black");
Posted by: Guest on March-30-2021
0

google script get font color

var color = myRange.getFontColor();

console.log(color) // The color is a CSS color string such as "#1ff3c6" or "white"
Posted by: Guest on March-30-2021

Code answers related to "google script get color of text"

C# Answers by Framework

Browse Popular Code Answers by Language