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

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

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

			properties[Properties.gxui_Panel.Width] = width;
			properties[Properties.gxui_Panel.Height] = height;

			return BeginPanel(name, themeClass, title, properties);
		}

Same methods

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