SuperMap.Web.iServerJava6R.LabelSymbolCell.FromJson C# (CSharp) Method

FromJson() static private method

static private FromJson ( System json ) : LabelSymbolCell
json System
return LabelSymbolCell
        internal static LabelSymbolCell FromJson(System.Json.JsonObject json)
        {
            if (json == null) return null;
            LabelSymbolCell symbolCell = new LabelSymbolCell();
            if (json["style"] != null)
            {
                symbolCell.Style = ServerStyle.FromJson((JsonObject)json["style"]);
            }
            symbolCell.SymbolIDField = (string)json["symbolIDField"];

            return symbolCell;
        }