OpenSim.Region.ScriptEngine.Shared.Api.OSSL_Api.osSetPenColour C# (CSharp) Method

osSetPenColour() public method

public osSetPenColour ( string drawList, string colour ) : string
drawList string
colour string
return string
        public string osSetPenColour(string drawList, string colour)
        {
            CheckThreatLevel(ThreatLevel.None, "osSetPenColour");
            OSSLDeprecated("osSetPenColour", "osSetPenColor");

            m_host.AddScriptLPS(1);
            drawList += "PenColour " + colour + "; ";
            return drawList;
        }
OSSL_Api