Artech.UC.gxui.Helpers.WebForm.BeginPanel C# (CSharp) Метод

BeginPanel() публичный статический Метод

public static BeginPanel ( string name, string themeClass, string title, object>.Dictionary properties ) : string
name string
themeClass string
title string
properties object>.Dictionary
Результат string
		public static string BeginPanel(string name, string themeClass, string title, Dictionary<string, object> properties)
		{
			if (properties == null)
				properties = new Dictionary<string, object>();

			properties[Properties.gxui_Panel.Cls] = themeClass;
			properties[Properties.gxui_Panel.Title] = title;

			return String.Format("{0}<container containerId=\"Body\">", BeginControl("gxui.Panel", name, properties));
		}

Same methods

WebForm::BeginPanel ( string name, string themeClass, string title, string width, string height ) : string
WebForm::BeginPanel ( string name, string themeClass, string title, string width, string height, object>.Dictionary properties ) : string