System.Web.UI.WebControls.TreeView.ImageStyle.ImageStyle C# (CSharp) Method

ImageStyle() public method

public ImageStyle ( string expand, string collapse, string noExpand, string icon, string iconLeaf, string iconRoot ) : System.Collections
expand string
collapse string
noExpand string
icon string
iconLeaf string
iconRoot string
return System.Collections
			public ImageStyle (string expand, string collapse, string noExpand, string icon, string iconLeaf, string iconRoot)
			{
				Expand = expand;
				Collapse = collapse;
				NoExpand = noExpand;
				RootIcon = iconRoot;
				ParentIcon = icon;
				LeafIcon = iconLeaf;
			}
			
TreeView.ImageStyle