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

osSetFontName() public method

public osSetFontName ( string drawList, string fontName ) : string
drawList string
fontName string
return string
        public string osSetFontName(string drawList, string fontName)
        {
            CheckThreatLevel(ThreatLevel.None, "osSetFontName");

            m_host.AddScriptLPS(1);
            drawList += "FontName "+ fontName +"; ";
            return drawList;
        }
OSSL_Api