${iServer2_Theme_ThemeLableItem_Title}

${iServer2_Theme_ThemeLableItem_Description}

コード例 #1
0
        internal static string ToJson(ThemeLabelItem param)
        {
            if (param == null)
            {
                return null;
            }
            string json = "{";
            List<string> list = new List<string>();

            if (param.Caption != null)
            {
                list.Add(string.Format("\"caption\":\"{0}\"", param.Caption));
            }

            if (param.Style != null)
            {
                list.Add(string.Format("\"style\":{0}", ServerTextStyle.ToJson(param.Style)));
            }
            else
            {
                list.Add(string.Format("\"style\":null"));
            }

            list.Add(string.Format("\"start\":{0}", param.Start));
            list.Add(string.Format("\"end\":{0}", param.End));
            list.Add(string.Format("\"visible\":{0}", param.Visible));

            json += string.Join(",", list.ToArray());
            json += "}";
            return json;
        }
コード例 #2
0
        /// <summary>${iServer2_ThemeLableItem_method_FromJson_D}</summary>
        /// <returns>${iServer2_ThemeLableItem_method_FromJson_return}</returns>
        /// <param name="jsonObject">${iServer2_ThemeLableItem_method_FromJson_param_jsonObject}</param>
        public static ThemeLabelItem FromJson(JsonObject jsonObject)
        {
            if (jsonObject == null)
            {
                return null;

            }

            ThemeLabelItem result = new ThemeLabelItem();

            result.Caption = (string)jsonObject["caption"];
            result.End = (double)jsonObject["end"];
            result.Start = (double)jsonObject["start"];
            result.Visible = (bool)jsonObject["visible"];
            result.Style = ServerTextStyle.FromJson((JsonObject)jsonObject["style"]);

            return result;
        }