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

FromJson() static private method

static private FromJson ( System json ) : LabelThemeCell
json System
return LabelThemeCell
        internal static LabelThemeCell FromJson(System.Json.JsonObject json)
        {
            if (json == null) return null;

            LabelThemeCell themeCell = new LabelThemeCell();
            themeCell.ThemeLabel = ThemeLabel.FromJson(json);

            return themeCell;
        }