| 
	206
   | 
  
	  Format the value of each enum literal 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.FormatEnumValue("`<bgcolor black><fgcolor white> ` + (len(value) > 2 ? `0x` + hex(value) : value ) + ` `");
	expropertieslist1.AllowMultipleValuesOnEnum(true);
	expropertieslist1.Sort(COMVariant::createFromBoolean(true));
	expropertieslist1.Select(expropertieslist1);
}
			 
		 
	 
   | 
  | 
	205
   | 
  
	  Display the value of each enum literal 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.FormatEnumValue("value");
	expropertieslist1.AllowMultipleValuesOnEnum(true);
	expropertieslist1.Sort(COMVariant::createFromBoolean(true));
	expropertieslist1.Select(expropertieslist1);
}
			 
		 
	 
   | 
  | 
	204
   | 
  
	  How can I replace or add an icon at runtime 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	str var_s;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_s = "gAAAABgYACEHgUJFEEAAWhUJCEJEEJggEhMCYEXjUbjkJQECj8gj8hAEjkshYEpk8kf8ClsulsvAExmcvf83js5nU7nkCeEcn8boMaocXosCB9Hn09pkzcEuoL/fE+Ok";
	var_s = var_s + "YB0gB9YhIHrddgVcr9aktZADAD8+P8CgIA==";
	expropertieslist1.ReplaceIcon(COMVariant::createFromStr(var_s));
	expropertieslist1.ReplaceIcon("C:\\images\\favicon.ico",COMVariant::createFromInt(0));
	var_Property = expropertieslist1.Add("I2","link1",1/*Edit*/); com_Property = var_Property;
		com_Property.HTMLName("Property <img>1</img>");
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	203
   | 
  
	  Disable temporarily the column's sort, resize and drag and drop 
	
		
			
public void init()
{
	;
	super();
	expropertieslist1.HeaderHeight(24);
	expropertieslist1.HeaderVisible(true);
	expropertieslist1.HeaderAppearance(4/*Etched*/);
	expropertieslist1.HeaderEnabled(false);
	expropertieslist1.Select(expropertieslist1);
}
			 
		 
	 
   | 
  | 
	202
   | 
  
	  Force hover-all feature 
	
		
			
public void init()
{
	;
	super();
	expropertieslist1.Background(500/*exScrollHoverAll*/,-1);
	expropertieslist1.Select(expropertieslist1);
}
			 
		 
	 
   | 
  | 
	201
   | 
  
	  Disable hover-all feature (Windows 11 or greater) 
	
		
			
public void init()
{
	;
	super();
	expropertieslist1.Background(500/*exScrollHoverAll*/,WinApi::RGB2int(1,0,0));
	expropertieslist1.Select(expropertieslist1);
}
			 
		 
	 
   | 
  | 
	200
   | 
  
	  Display a custom tooltip 
	
		
			
// MouseMove event - Occurs when the user moves the mouse.
void onEvent_MouseMove(int   _Button, int   _Shift, int   _X, int   _Y)
{
	;
	expropertieslist1.ShowToolTip("new content","",,"+8","+8");
}
public void init()
{
	;
	super();
	expropertieslist1.Select(expropertieslist1);
}
			 
		 
	 
   | 
  | 
	199
   | 
  
	  Shows the tooltip of the object moved relative to its default position 
	
		
			
// MouseMove event - Occurs when the user moves the mouse.
void onEvent_MouseMove(int   _Button, int   _Shift, int   _X, int   _Y)
{
	;
	expropertieslist1.ShowToolTip("<null>","<null>",,"+8","+8");
}
public void init()
{
	;
	super();
	expropertieslist1.AllowTooltip(true);
	expropertieslist1.Select(expropertieslist1);
}
			 
		 
	 
   | 
  | 
	198
   | 
  
	  Is it possible to change the header's visual appearance (EBN) 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
	expropertieslist1.HeaderVisible(true);
	expropertieslist1.BackColorHeader(0x1000000);
	expropertieslist1.HeaderHeight(22);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	197
   | 
  
	  Is it possible to change the header's visual appearance 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.HeaderVisible(true);
	expropertieslist1.HeaderAppearance(4/*Etched*/);
	expropertieslist1.HeaderHeight(22);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	196
   | 
  
	  ImageSize property on 32 (specifies the size of control' icons/images/check-boxes/radio-buttons) 
	
		
			
 
 
public void init()
{
	COM com_Appearance;
	anytype var_Appearance;
	str var_s,var_s1,var_s2,var_s3,var_s4;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.ImageSize(32);
	expropertieslist1.DefaultItemHeight(36);
	expropertieslist1.HeaderHeight(expropertieslist1.DefaultItemHeight());
	expropertieslist1.Font().Size(16);
	expropertieslist1.ToolTipFont().Size(expropertieslist1.Font().Size());
	expropertieslist1.FilterBarFont().Size(expropertieslist1.Font().Size());
	expropertieslist1.Indent(26);
	expropertieslist1.DescriptionHeight(96);
	expropertieslist1.DisplayBoolAs(1/*exBoolCheck*/);
	expropertieslist1.FilterBarPromptVisible(-1/*exFilterBarVisible*/);
	expropertieslist1.HeaderVisible(true);
	var_s = "gBJJgBAIDAAEg4AEEKAD/hz/EMNh8TIRNGwAjEZAEXjAojKAjMLjABhkaABAk0plUrlktl0vmExmUzmk1m03nE5nU7nk9miAoE+oVDolFo1HpFJpU5h8Sf9OqFNqUOqN";
	var_s = var_s + "UqdPq9VrFWrlbr1QpdhAFAkFis1ntFptVrtkrpszrNvmVxqk3uVtm1kmF3sdBvF/wGBmV+j9BYGHwWJulfxdax2NyFdx2JlV6l9Nw7AAGZymdz2Cy2GxErvWcz9ivlwy";
	var_s = var_s + "V21cuxugwktzGIzmvwtl0+53U5y0a0Wazmmyu/3dCyOMyXHx/J5nIr9q3uyqnBxFN3G46ma4vb7mD2Ng4nZze00fDkHC7t7us2rOX5tguetpHRlmz4HVqnXk1PjHO+CM";
	var_s = var_s + "Po9MBMC+j2vC8j7wS8cFNI4kBo05UIvfCT/NsnsApU+0Fqg/T+oy/kPxC0sEQfErKQK96+w28UWRI8UGvO8sTLS9r2PWmsMJTDTask3CsIbIEQRA3shOXEEAO/GclJ9F";
	var_s = var_s + "EKrrA8FRbKMXRIlb0JxCkjS1LMswhCcvuel0cv26cSMa8Ufx+2sQwhEUoSXOCjSbLcnxjKc7sdKUVyq28NtVI71P9P7JxtQEapjQ6fzfM8zPfNE2PhIsLL63E40slk5y";
	var_s = var_s + "7N89LcyU9SvMb3SdUc6VJLj5VLVLfO/PS9KzNFHUa/0XyBD0dxlS9cxhMlTRSoNXypPErWDPyfNS+MwprRNO0FD8wVVZ1AI08URwVRjtJ1WCn21QkkUrXVLVPQS/XIkF";
	var_s = var_s + "gTxT9iONZ9xVTdq+L1eKg3kkF6Upe68XtfV51/MtrVjBlwYFL1ev8y1/P6/lyzzYl02wntj0RVFmS1Qa+M5as93QxEUW9e993rfmQ2+vy65M/mL1lhl/2bj2ByVduMtN";
	var_s = var_s + "hCJT9hdz41nN14Ld12Z9UjfI/oUAaGseiw6+uFLLhcVabJOS5RqOE0BHlZ5VnEr5fOMs3st+aa/bbRzrJGV51Y0b0DbqaWXZD90hIsPbjWu52+6Wyadpe66hhO+P/Xio";
	var_s = var_s + "W5rD8ZbrUZuVg6n1dsE/cXmewu1m9PVwnd35/nueXho/NaJzmjc61W76esuT77eG8pTquy9TwWH8LEzG8RDfFalx3Gcfvna9rvG/cptGLd9tuI6TZOP5Fiqi99vea+X4";
	var_s = var_s + "VRcBq/JZZtVQ9cwSs5lsXE372+a9z7PbfB3VVqHyvMctLto8uob6eV0m/cD6MN2v+T33t6sBut42vdv2bJ8a997x2maFJfK+qArbGJPEKE+1qTflMsIdW/GCJX17KcT6";
	var_s = var_s + "/czr/X+u1g29B7j/4BQfWkkx4zIHisjhPCmE0K4SwtXM+d4BvHRwNZOoBph9IJvPek9d40FoMJxf691jj2ywQQcHEWET4XJwkTszlVqm2GokewxtBT1DpQjRxDN0rUVD";
	var_s = var_s + "NKdC3lb6tzNOwh6upMSSYfv4YBCl/bsn9PxiFCEo7SI6Obc9HeOrnY8x4jtHtdpN4GRbaorhsbu18Pph5CiHymI0RpSXGJ/z2oUOxYxG858AyiI+bfJtuTcG5yelBJyT";
	var_s = var_s + "8okhqFd4a5yxL0rvulYtKCsZiWxWkc1s1cRoxxwhA31DLE0mR9l9HqX8fJgTDmFMVH0MIsRzVYnwnMi1dyzmhLt2kS2pxIiU62Wj5ptQGlSYFakLonTUJNLKaM5Wzlff";
	var_s = var_s + "EkuFkk5wTrhVO2eE7G6lJhxFFYUZ55zmn0WuBCD4pzhirFCKkbomsOoIYmZx5p90LoYWGPdD5g0QmJRKYxbZ6zYoVQ2jVGylSak7KSkFH6RSjpHKFuU+YMyNo5SulkC6";
	var_s = var_s + "I0vonTCitMXPoEpVS2H5FQfEqp2R1opIgAEkJISYARTCukOhmPNI5Ex/wzGHUsicMwA1LHgQ90Y/KpoQHAD+pB/R4NzIaMAB9Xaw1gqaAOsh/A/ptIkWUfhGK1kZH8Rg";
	var_s = var_s + "H5GqvgArqRmt4AAPrTroRofBGADkqr6Rmu4D7CEaHARiwpJrEEZsXXwlVjyMWRsaRqwdkLGNBABZmytmyMnaINZqyVpLR2ftKAAAdd6h2osbaskdiq4EZtgSmyNcbVWR";
	var_s = var_s + "JNXe3AA7REar3b0stlAAXBtoRmvJGLjEYAHUWsFcwCD/rnaop9aEICMAPdK5hT6xpeuzdOtAgKuJeGfdq6ggEbkTvAP+p9UCHXrvKkcgIA==";
	expropertieslist1.Images(COMVariant::createFromStr(var_s));
	var_Appearance = expropertieslist1.VisualAppearance(); com_Appearance = var_Appearance;
		var_s1 = "gBFLBCJwBAEHhEJAAEhABfICg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziaQAGgkNQwCSLIwjNIsBxPFKVQChEYxSjKA40SJNUgyj6";
		var_s1 = var_s1 + "CCY+QLIE5PfQgAL9I6eJABCCSQKkYx0HScRiwPBIbAZAYhCZqaKhWgkKI/WBQIABRDVLx5ESiLRtKy7Mq2bpvXBcNxXHalaztO68LxvKyqHb5fJ/PpgL4YHgmC4NQ7EM";
		var_s1 = var_s1 + "RwF6rfbyfZ7Xg/ORPTijZ4sdzMHTzJyscx3HqfaBoOaZU5eMLceTUMofHIndxCcasPbsOatVqjG5sYjcGC3La9cz3Pq/bpuDCbMxuaK1TrYXr1TTrcofBDldAxXRKDxR";
		var_s1 = var_s1 + "DWVhLnYOw9i6XxzjuXprCaOoKB6EwbiCZZCGOdZYlcT4xHmbhMnwNxtn+G5bmqdZ7n4Pw/i+X5zm+dQ9g4CAFjsfAJheOI8HsDoWDWTB/lwSAQkmA5PEgRYoDyDwYFYF";
		var_s1 = var_s1 + "oFmGCBmBqBphDgRJ0gOTIYBGRB/lyRh0iSCZbjYWJzgWDwIjYLoLmMCJGDKDJjBgWgqG6YhyhGHRzA2aJ1mCABOAiOJvhCZBJBYRoRmSCQmEqEQimkAZgg8TZnDCV4Uk";
		var_s1 = var_s1 + "mCUmBKZYJGYWoWCUUhiFMNZckNUh2GENoaGaGZmgmJhqhqZpGGIEx2GYIxSGGGJdggWJth2Z4JmYeoemeSZ2H6H4hGmQhihyTRHGYLg7CiCgmgqIpokoNoOiOaJ4jqAo";
		var_s1 = var_s1 + "chqaZGgaCxpAoZoaiaaJqEmWIcGgShcnCJwqEqFoR3YOoFlgchflqNouiuawHmWSYqGkWZQhcatzmaOoumuSp2j6L5bBaKo0GQKRnGGCxqiyCwmkqMpsksNpOGUGI7A0";
		var_s1 = var_s1 + "ew1G0Rxlg0PptgsZuDG2Sx2l6N5tnYNZZjUDRXDCVo5l2FoymqOpukuNpujubwLjmWY5k0ZwxkaFxYlWdp6j6b5Lnafo/nABQdg2FxcUsY5BkmXAkmeQpckwNRrkKTh8";
		var_s1 = var_s1 + "CSHZBk4NwyC4KxxgMDwakOMZDn8GgwnGAo2C4cwthMcwmCcMoHBMHRehwTIghySYNksZwcH4HBMEsHx5hyPItiweYxnwSZEH4Mozn0fR+DMAo7EYJ50gkdZelKdNql2U";
		var_s1 = var_s1 + "gJn0GIukwH4HicQRai2GI4mSVpNl0dZGledgNgcYpYDWUx3FsOQi5YV5anaTY3G6W53A2RxylydxFjiaxEFCCgBBAQ==";
		com_Appearance.Add(1,COMVariant::createFromStr(var_s1));
		var_s2 = "gBFLBCJwBAEHhEJAAEhABcoFg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziaQAGgkNQwCSLIwjNIsBxPFKVQChEYxSjKA40SJNUgyj6";
		var_s2 = var_s2 + "CCY+QLIE5PfQgAL9I6eJABCCSQKkYx0HScRiwPBIbAZAYhCZqaKhWgkKI/WBQIABRDVLx5ESiLRtKy7Mq2bpvXBcNxXHalaztO68LxvKyqHb5fJ/PpgL4YHgmC4NQ7EM";
		var_s2 = var_s2 + "RwF6rfbyfZ7Xg/ORPTijZ4sdzMHTzJyscx3HqfaBoOaZU5eMLceTUMofHIndxCcasPbsLpOS5LNKsaxmWLYdhFdTxQi6LpvfA8BwXC6JY7heRYRbFbYxRjGNi1TS7G4n";
		var_s2 = var_s2 + "GKd5WGuL4UHwI4VkaYxii8V4pgQMgVBQdQ5iCTYGi8T4vlWbJ3nuPg+l+H5AlSCg6ByPBoE8Ap3jqYxhBido5g0OgOGOGI4CsSpCCAcgcAuEokiEN5NCKfJ9DyTRjnSc";
		var_s2 = var_s2 + "g1CEYxOBmBpPCgagdgcIZoHoGIFA4AxQkCAxKAgKBwgGSpIBCZhjF2E5UnQPQMiMCJBCIBwxkSQgsgo+JtDKT4ziiQw+k6EwAnsOgLnkHI+yCQ4iEuE4klkPhShEJBpA";
		var_s2 = var_s2 + "oPgymOMoaDgHBjFMBgyD0HYTiCZSZhIIIGC4ChiHSew5kwM5omILZPiOBI0hwZw5kodIdA+M4Uj4PxOmMSJ9DuTQzmyZgviceZagaHVfj4awwmaAh2GUIYmCOEZZDaDR";
		var_s2 = var_s2 + "DFGdwcg4EwyHMN4LBOaJbCoaZqgKH8qkMfIyD8DozDyfA7A0Coui0OpMmOZJdCsahKg6NooioChwmEMxLEoXJbDUTRXGSUgykyMgQG0GpPHMdI3D4TRCgSeQ0kmaw+lG";
		var_s2 = var_s2 + "NAtCOZJVCiT5DhyRQwAqMg0EoDBBGEGAsASC5yiSCw+k4Mp6lWNQuksTpRjMTxDGzJwGmGMpDDKXYTECSAxl6Q5olkK4PgMMIVkASRMBMBgzEkaZEjsNALhIZA6AeQBg";
		var_s2 = var_s2 + "k0ZJEgAAJ0CIAgODMNIsD6DRih9uYwFyAwfCUb5ijmbI+gwdxkk8MZMGeMpPCkDxzBiC5MHMPJLDSSROFMLIoBEQogEMFJPnENYQGgE4DCOaJfC7tYkhGTQ0kyWwykuX";
		var_s2 = var_s2 + "pMiyRpKjKR4wngM4JmOWJACCdYtHMWw+Eych4nINYLAEYA8AgdAEEsQZajaQoog4GxPiMVIolcdxNG8XZVkmNoRwWRVBlFeFEeAZQJgnFiHgHwcAhjhHgGMSI5xki2Cy";
		var_s2 = var_s2 + "A4EQsA3i0HkBsLwKRFgAHcPkHopBJBcBeDUYI7xyDOHqKkWo2hLCsDIBIY4qQ5A8DoMMYwOAqCSBGKgU4yB2iDBwIgB4hxQgAAWNgBoAgsBdEcBUQ4sQ9A/HqD0JI8Rp";
		var_s2 = var_s2 + "BzH2OYVgahLBHFiJQJweQiDhDUE4SAARQAzFsG0EQwA6AOWSBkFgVAIBCHeGERQFQiCQHeFkC4vkiB8DyB4F4QxVDvGMNEOQexMjlBeOAKQiQLgfDA7QEAaRiBdEkH8T";
		var_s2 = var_s2 + "I7AZiFBAGYBIABWjYBiGACioQ4C1A+AMMgWhfgxHgPsT4URIB0COKgPgjRwiAB8AYUArxBgCF6J4GY5hrAOCAPAAoGRRCsCIMEXATXfgAF8BMJwURuEQDgD4Q4OBoAeH";
		var_s2 = var_s2 + "GFgLIwQrC2D0JoSQ+QvhrHoSgQI8AbDFGID8C4Ah6BQAQAASACwgCYCMAUMARAvCKAiAMCAokeCKBEOAKgCBoDaHuMsEAqwJDiACDURg8R6gPCyDofYWAhgoDIJ4ZAuh";
		var_s2 = var_s2 + "oiGAYGgRoQw/A0GMMga4GwxiEDeIYYInATCDBQAoBAwAoDlA0KMBoVRGiDGwDQUYIRsgaGGDgM4LAwDWB8EcIA1APhjEgGQVwgRIgjFIIQHokgZA+CSEkLIKQSjHAwMs";
		var_s2 = var_s2 + "CwDAsAEB2ABTIwRwD6A8CMToSxkAxE4HYIw+BsgbBEDAHYBwojCBoIYFgXSjABE4MsHIbQWhlGILQS4UhvBdAUKEEwHgxDAAABQQQUAhgKHiDwE4JS4A7BGLQZwCR4ga";
		var_s2 = var_s2 + "BEMUYAqgKApHgGwVAIRNgvBMMQXImwZDtE4I8UIyAZCDCAE8AwrhgAdEEBACQLRCg4FEB4AYtA7CdEiPQMoJAMDNCkOMCAXAFDhH0D0Q4EgfAaGSK4NYzRUj9BuCgAgs";
		var_s2 = var_s2 + "wOBjB4Fqpw8B2ADAwE4A4Qx2DAE6JIaQPQGhAGKBcIQ5B5gHByKIFARwADbAyKUfgdBKBBGyEcVIAB/ijHoIoSA0gdBNl+OATYERZgBGSDYWIWAUCEGKA4FAhR7CIBtY";
		var_s2 = var_s2 + "QGYZg4CMAiKEcAOwkBjHWE8Z4lQgA+DkBoTohwwCeAaMEEgBQCCABgHMRwQRhhMEWFQd4HwZgwDqFESItAbAGEANCpINAzANCCJkK4ah+heFYBURwsQrS2CsMYMoWGBh";
		var_s2 = var_s2 + "YDWI0EInQgiApXaOVI1QFDsC8MUNoMBMA1HMJga4eh+BeAWOgNNowGjYzCGAAwax+iJBeBVT4gxoBIAGFsJFBxgBiGKFkKQ7g5DFFQEcAo4AzDDACKEQQLgCiJDYB0Mg";
		var_s2 = var_s2 + "RBCCQAgQEA==";
		com_Appearance.Add(2,COMVariant::createFromStr(var_s2));
		var_s3 = "gBFLBCJwBAEHhEJAAEhABQ4Fg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziaQAGgkNQwCSLIwjNIsBxPFKVQChEYxSjKA40SJNUgyj6";
		var_s3 = var_s3 + "CCY+QLIE5PfQgAL9I6eJABCCSQKkYx0HScRiwPBIbAZAYhCZqaKhWgkKI/WBQIABRDVLx5ESiLRtKy7Mq2bpvXBcNxXHalaztO68LxvKyqHb5fJ/PpgL4YHgmC4NQ7EM";
		var_s3 = var_s3 + "RwF6rfbyfZ7Xg/ORPTijZ4sdzMHTzJyscx3HqfaBoOaZU5eMLceTUMofHIndxCcasPbsLpOS5LNKsaxmWLYdhFdTxQi6LpvfA8BwXC6JY7heRYRbFbYxRjGNi1TS7G4n";
		var_s3 = var_s3 + "GKd5WGuL4UHwI4VkaYxii8V4pgQMgVBQdQ5iCTYGi8T4vlWbJ3nuPg+l+H5AlSCg6ByPBoE8Ap3jqYxhBido5g0OgOGOGI4CsSpCCAcgcAuEosiYN5NHMOJ+D4TpTnSe";
		var_s3 = var_s3 + "Q7CEY4uBmBpPhgagdgcIZoHibIEyUBJZDQIJShoCgcCAcoyAQOYYlcZJ1D0DxDCiQgwEiAZMHEMJLFKPJ9D2DoDnidQ4k+Y5QmKEROBkIhKD0JIZDIS4TGUCQuEeEJjn";
		var_s3 = var_s3 + "OIg8CuY4RkYNgwGMM5RllGpThDRYIGKZIpCkJFUH0PINyWcQ3CaaZCG+HBnEOTJhD8Tx4GoeQ/GcaZSHOH5nCmQhshoZhihYYwhiYA4RlkNoNEMUZ3ByDjwEsPxOnMaJ";
		var_s3 = var_s3 + "9DuDR6F6GYmCmKh0nANtMioP4Gg8aoSiIO5NhodociqaY6GaFYkEyOg8lsNRNTaUgykyMgQG0GpPiONJbD8DpDEyfA6k0KwOkWMQsGsAJU0SagwkoJQJDIPISCQCJTGS";
		var_s3 = var_s3 + "UwyGaM4KkmMgtksHpFjAZ4TGCBAbgaSpcksdhNAMIJHHsD5TjSWWMAMOpwjyLwbk6cAz0KRJiDkDYzESCwiggcgcgYIQwCIEINCMCITj6TVxkMXp2j0cQLlCTo7E2F4y";
		var_s3 = var_s3 + "mkMZdhMPJHDGHpLAyVg+k4UwrCCSIyByDJ8DuDY8CiWY0kiXAXC6QJwFKGIjCeJpjgyezjlyDw6klHx5myRoMGwZwbkcToTEiew4kwbQfEmUgPkOKJUD4DpTHSHQmgkX";
		var_s3 = var_s3 + "I/ASTA1g0XIEDMTBimyfI7jSLYHEiUoPk0Fw/kadAsHGao8A0A5smEMJ2mNyg5gzJZwDgCpChyIZVyIZwFCMJEPASRkBqE+IcHInRcDxA2H4bIsx0AtDsIBpwZwYicD6";
		var_s3 = var_s3 + "BscwDwUBgHCIYaIfgtiVH2O4WgUwJjEFeAEQA7y4hMCiBMS4aRdB9A4CYE4LxljyBMHcDItBxinDCLcTYmgejBFQ9UTg9gFBOEmAQTI7A4iZGMGkQAWQ7jYA2HIL8BRA";
		var_s3 = var_s3 + "jDG4HcCwARbjZHiNoDw1nLDnGyNINQ+wjCpBMEgcovQUgICQJEcgWRuBvAyJ4d4ugpCUAINcHogxIgnDiM4N4axzD3F2JMTY/hRqYF6FsWIxhYAGGoAALQYgYirBwBEB";
		var_s3 = var_s3 + "wpAjBEAAIEIYsA2gOHCMAGgXAACIDmMITAUgFABH0D0I4WwvhNFGMAOIvxRD2GKNcMA8gjAPDCPwBogRPAxA8PgRwZRICYDED8RAXQEghEAN8DIgwIBdB4JYWwMgtiQH";
		var_s3 = var_s3 + "oFQKAiRFguFKGwGQhglDsEOVwEQQRkCKBwOIHgSREDRBYHEXQcQdD7GIGARQHRxipBrMobgewDCUCADsEYWAzgMHKHQDQxxsDzA6EMfAeQHB4GQDkUYPA0iECiKoGgRh";
		var_s3 = var_s3 + "cDdA2GMQA8AOCjDSPgHI4QnApAKBICwHg1A+BcAwcYsgbjGGQNkCIgRsA6EcBEWANADjsB0B8YYzQQDIGSBcEYZBCCPEkFIHQSgkgZAwG4IwBAbAYGGAgL4Ch4g8BOCQ";
		var_s3 = var_s3 + "AA2KKC0GcAke4AAXAFCoHkDw4xbBFEcJkE4JRSiEFeJYKQVRMgJHODwX4xAgC/AsIIZAeAHDRG0HYI40RKCLEGDUI4jAghwBWIceA+whCpHMFYZYOQxglDMHMBQGxYjV";
		var_s3 = var_s3 + "HiAoBIPgfgHGwPsHYJRSB6A0IERQLhCjJHMA4OQoAoCOACLYGYSx8DpBQIMWQdRnDRH+DsE4fB3CeAmM67kAAXBFEIDYDI7wLBtEoEIfYNwjiUGGJQYQMAjCHEAO0C4z";
		var_s3 = var_s3 + "xW29CoCgfIxR9AKA6J8BgUAIhDGMIoJ40hqgwCgKETgnBhhqCGI0AIqgZhGDANQDIlBDCRGkCoJISR0g1BSKQOgfAzBRG0DYHARh4DeDAOwANuw8ApCKKkYg/RPhjBsH";
		var_s3 = var_s3 + "0J4yg5hPGWN0GwFBHQBFaDoQIURljFAoB4GgzRVzbBECQFQRQoguHGHANwDRdCKy8CgSIGwhhoDYJYYI1giBICSAEgI=";
		com_Appearance.Add(3,COMVariant::createFromStr(var_s3));
		var_s4 = "gBFLBCJwBAEHhEJAAEhABUYCg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziYBYfgkMIgSbJUgDGAkRRdDSOYDmGQYDiCIoRShOMIjHL";
		var_s4 = var_s4 + "UXxtDaIZwhEAoJb+RgAUY/cTzaAEUwHHiTKInaCQShsFYJUJAdRURQ9EwvCIZBpEWwLChENQwWLCNj2TScBwjCyqbale45ViqdoDU5EUiXJJ8ZxnECfYyrGjaMpCeKBU";
		var_s4 = var_s4 + "rGYTVRBIMxLLSia5oeJqMrnBpNVrIUgXCAGFwHK6BcauXIIDp6XoWWRbAAWDpVVzNNC3YzkCIceADHKiXxmVz4JLdGZ1QTGID2XaYaxWK4oZjsVSc4KDHbETbHFi9Fo3";
		var_s4 = var_s4 + "NaaxGisew+GYc4HlCR5NAAAIIEkQJSGMOgdE4RhYDwJJsAaAYQgmPpolCWgSCiBJzjcEIAkQXIBm8d5UhOQgCDUIBDDJDhgggJgKgKYJIDSVoDk8KBFF4OohEMZgWDsY";
		var_s4 = var_s4 + "YDj4GoGmGSB2B6B5iAiBgYDsYRjGSbIJo4RgqDuIpIAoLoLmMCJGDKDJjJiLA7xqUAAgGTwYnYPoPmQCQGEKEJkEkFg9gGY44BoRoSmSSQ2EKEggHgRhShSZRJFYVoVm";
		var_s4 = var_s4 + "WCRmFKFAgGOTheheZgJgYYoYmYSYWGaF4lkMMJ0hqZpJjYbobmcCZGHKHJmjmJh0h2Z4JmYcIaE8WZ2H6H5oAoBoCiCaBKBYfdjGoJoKiKaJKDaDojmkChGgmIgpCoVo";
		var_s4 = var_s4 + "WiWaJZiSd4mmmSh2h6J5qAqBoiiiaY5iSeIpmqComiqKpqkqNouiuah6hqMIsmsSpWiuGhP1kOoumuSp2j6L5sAsBo54gKwWkaMZsgsJpKjKbJLDaRYxYWRpSjSbIZiS";
		var_s4 = var_s4 + "e41m2CxmlqNptksdpejebR5iSfI4m4S4W16boLiaao6m5fJ9jubwLkaco8m8S5WnaPZunuOp4j6b5Lnac4SA0PAGlgP4wEwFwGkGcIMCcCpCnCCxiA8NYAAmMJfkSbhF";
		var_s4 = var_s4 + "CcFpFnGDBnBqRpUhuEwTDeZ5lHCfw6HIQxLCaAxygyJwqgGcATE4FA6hWY4tjEAAQBAgIA==";
		com_Appearance.Add(4,COMVariant::createFromStr(var_s4));
	expropertieslist1.BackColorHeader(0x4c6c6c6);
	expropertieslist1.SelBackColor(0x4000000);
	expropertieslist1.SelForeColor(WinApi::RGB2int(0,0,1));
	expropertieslist1.Background(32/*exCursorHoverColumn*/,-1);
	expropertieslist1.Background(0/*exHeaderFilterBarButton*/,0x4000000);
	expropertieslist1.Background(1/*exFooterFilterBarButton*/,0x40000ff);
	expropertieslist1.Background(70/*exCheckBoxState0*/,0x1000000);
	expropertieslist1.Background(71/*exCheckBoxState1*/,0x2000000);
	expropertieslist1.Background(72/*exCheckBoxState2*/,0x3000000);
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.Sort();
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	195
   | 
  
	  ImageSize property on 16 (default) (specifies the size of control' icons/images/check-boxes/radio-buttons) 
	
		
			
 
 
public void init()
{
	COM com_Appearance;
	anytype var_Appearance;
	str var_s,var_s1;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.ImageSize(16);
	expropertieslist1.DisplayBoolAs(1/*exBoolCheck*/);
	expropertieslist1.FilterBarPromptVisible(-1/*exFilterBarVisible*/);
	expropertieslist1.HeaderVisible(true);
	var_s = "gBJJgBAIDAAEg4AEEKAD/hz/EMNh8TIRNGwAjEZAEXjAojKAjMLjABhkaABAk0plUrlktl0vmExmUzmk1m03nE5nU7nk9miAoE+oVDolFo1HpFJpU5h8Sf9OqFNqUOqN";
	var_s = var_s + "UqdPq9VrFWrlbr1QpdhAFAkFis1ntFptVrtkrpszrNvmVxqk3uVtm1kmF3sdBvF/wGBmV+j9BYGHwWJulfxdax2NyFdx2JlV6l9Nw7AAGZymdz2Cy2GxErvWcz9ivlwy";
	var_s = var_s + "V21cuxugwktzGIzmvwtl0+53U5y0a0Wazmmyu/3dCyOMyXHx/J5nIr9q3uyqnBxFN3G46ma4vb7mD2Ng4nZze00fDkHC7t7us2rOX5tguetpHRlmz4HVqnXk1PjHO+CM";
	var_s = var_s + "Po9MBMC+j2vC8j7wS8cFNI4kBo05UIvfCT/NsnsApU+0Fqg/T+oy/kPxC0sEQfErKQK96+w28UWRI8UGvO8sTLS9r2PWmsMJTDTask3CsIbIEQRA3shOXEEAO/GclJ9F";
	var_s = var_s + "EKrrA8FRbKMXRIlb0JxCkjS1LMswhCcvuel0cv26cSMa8Ufx+2sQwhEUoSXOCjSbLcnxjKc7sdKUVyq28NtVI71P9P7JxtQEapjQ6fzfM8zPfNE2PhIsLL63E40slk5y";
	var_s = var_s + "7N89LcyU9SvMb3SdUc6VJLj5VLVLfO/PS9KzNFHUa/0XyBD0dxlS9cxhMlTRSoNXypPErWDPyfNS+MwprRNO0FD8wVVZ1AI08URwVRjtJ1WCn21QkkUrXVLVPQS/XIkF";
	var_s = var_s + "gTxT9iONZ9xVTdq+L1eKg3kkF6Upe68XtfV51/MtrVjBlwYFL1ev8y1/P6/lyzzYl02wntj0RVFmS1Qa+M5as93QxEUW9e993rfmQ2+vy65M/mL1lhl/2bj2ByVduMtN";
	var_s = var_s + "hCJT9hdz41nN14Ld12Z9UjfI/oUAaGseiw6+uFLLhcVabJOS5RqOE0BHlZ5VnEr5fOMs3st+aa/bbRzrJGV51Y0b0DbqaWXZD90hIsPbjWu52+6Wyadpe66hhO+P/Xio";
	var_s = var_s + "W5rD8ZbrUZuVg6n1dsE/cXmewu1m9PVwnd35/nueXho/NaJzmjc61W76esuT77eG8pTquy9TwWH8LEzG8RDfFalx3Gcfvna9rvG/cptGLd9tuI6TZOP5Fiqi99vea+X4";
	var_s = var_s + "VRcBq/JZZtVQ9cwSs5lsXE372+a9z7PbfB3VVqHyvMctLto8uob6eV0m/cD6MN2v+T33t6sBut42vdv2bJ8a997x2maFJfK+qArbGJPEKE+1qTflMsIdW/GCJX17KcT6";
	var_s = var_s + "/czr/X+u1g29B7j/4BQfWkkx4zIHisjhPCmE0K4SwtXM+d4BvHRwNZOoBph9IJvPek9d40FoMJxf691jj2ywQQcHEWET4XJwkTszlVqm2GokewxtBT1DpQjRxDN0rUVD";
	var_s = var_s + "NKdC3lb6tzNOwh6upMSSYfv4YBCl/bsn9PxiFCEo7SI6Obc9HeOrnY8x4jtHtdpN4GRbaorhsbu18Pph5CiHymI0RpSXGJ/z2oUOxYxG858AyiI+bfJtuTcG5yelBJyT";
	var_s = var_s + "8okhqFd4a5yxL0rvulYtKCsZiWxWkc1s1cRoxxwhA31DLE0mR9l9HqX8fJgTDmFMVH0MIsRzVYnwnMi1dyzmhLt2kS2pxIiU62Wj5ptQGlSYFakLonTUJNLKaM5Wzlff";
	var_s = var_s + "EkuFkk5wTrhVO2eE7G6lJhxFFYUZ55zmn0WuBCD4pzhirFCKkbomsOoIYmZx5p90LoYWGPdD5g0QmJRKYxbZ6zYoVQ2jVGylSak7KSkFH6RSjpHKFuU+YMyNo5SulkC6";
	var_s = var_s + "I0vonTCitMXPoEpVS2H5FQfEqp2R1opIgAEkJISYARTCukOhmPNI5Ex/wzGHUsicMwA1LHgQ90Y/KpoQHAD+pB/R4NzIaMAB9Xaw1gqaAOsh/A/ptIkWUfhGK1kZH8Rg";
	var_s = var_s + "H5GqvgArqRmt4AAPrTroRofBGADkqr6Rmu4D7CEaHARiwpJrEEZsXXwlVjyMWRsaRqwdkLGNBABZmytmyMnaINZqyVpLR2ftKAAAdd6h2osbaskdiq4EZtgSmyNcbVWR";
	var_s = var_s + "JNXe3AA7REar3b0stlAAXBtoRmvJGLjEYAHUWsFcwCD/rnaop9aEICMAPdK5hT6xpeuzdOtAgKuJeGfdq6ggEbkTvAP+p9UCHXrvKkcgIA==";
	expropertieslist1.Images(COMVariant::createFromStr(var_s));
	var_Appearance = expropertieslist1.VisualAppearance(); com_Appearance = var_Appearance;
		var_s1 = "gBFLBCJwBAEHhEJAAEhABUYCg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziYBYfgkMIgSbJUgDGAkRRdDSOYDmGQYDiCIoRShOMIjHL";
		var_s1 = var_s1 + "UXxtDaIZwhEAoJb+RgAUY/cTzaAEUwHHiTKInaCQShsFYJUJAdRURQ9EwvCIZBpEWwLChENQwWLCNj2TScBwjCyqbale45ViqdoDU5EUiXJJ8ZxnECfYyrGjaMpCeKBU";
		var_s1 = var_s1 + "rGYTVRBIMxLLSia5oeJqMrnBpNVrIUgXCAGFwHK6BcauXIIDp6XoWWRbAAWDpVVzNNC3YzkCIceADHKiXxmVz4JLdGZ1QTGID2XaYaxWK4oZjsVSc4KDHbETbHFi9Fo3";
		var_s1 = var_s1 + "NaaxGisew+GYc4HlCR5NAAAIIEkQJSGMOgdE4RhYDwJJsAaAYQgmPpolCWgSCiBJzjcEIAkQXIBm8d5UhOQgCDUIBDDJDhgggJgKgKYJIDSVoDk8KBFF4OohEMZgWDsY";
		var_s1 = var_s1 + "YDj4GoGmGSB2B6B5iAiBgYDsYRjGSbIJo4RgqDuIpIAoLoLmMCJGDKDJjJiLA7xqUAAgGTwYnYPoPmQCQGEKEJkEkFg9gGY44BoRoSmSSQ2EKEggHgRhShSZRJFYVoVm";
		var_s1 = var_s1 + "WCRmFKFAgGOTheheZgJgYYoYmYSYWGaF4lkMMJ0hqZpJjYbobmcCZGHKHJmjmJh0h2Z4JmYcIaE8WZ2H6H5oAoBoCiCaBKBYfdjGoJoKiKaJKDaDojmkChGgmIgpCoVo";
		var_s1 = var_s1 + "WiWaJZiSd4mmmSh2h6J5qAqBoiiiaY5iSeIpmqComiqKpqkqNouiuah6hqMIsmsSpWiuGhP1kOoumuSp2j6L5sAsBo54gKwWkaMZsgsJpKjKbJLDaRYxYWRpSjSbIZiS";
		var_s1 = var_s1 + "e41m2CxmlqNptksdpejebR5iSfI4m4S4W16boLiaao6m5fJ9jubwLkaco8m8S5WnaPZunuOp4j6b5Lnac4SA0PAGlgP4wEwFwGkGcIMCcCpCnCCxiA8NYAAmMJfkSbhF";
		var_s1 = var_s1 + "CcFpFnGDBnBqRpUhuEwTDeZ5lHCfw6HIQxLCaAxygyJwqgGcATE4FA6hWY4tjEAAQBAgIA==";
		com_Appearance.Add(4,COMVariant::createFromStr(var_s1));
	expropertieslist1.BackColorHeader(0x4c6c6c6);
	expropertieslist1.SelBackColor(0x4000000);
	expropertieslist1.SelForeColor(WinApi::RGB2int(0,0,1));
	expropertieslist1.Background(32/*exCursorHoverColumn*/,-1);
	expropertieslist1.Background(0/*exHeaderFilterBarButton*/,0x4000000);
	expropertieslist1.Background(1/*exFooterFilterBarButton*/,0x40000ff);
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.Sort();
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	194
   | 
  
	  How can I add property of button type 
	
		
			
 
 
// ModalPropertyChange event - Fired when the properties browser is about to change a property's value using a modal dialog.
void onEvent_ModalPropertyChange(COM   _Property, COMVariant /*variant*/   _Value, COMVariant /*bool*/   _Cancel)
{
	;
	print( expropertieslist1.Property() );
}
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.Add("Button","the button is always shown",-3/*Button*/);
	expropertieslist1.Add("EditButton","show on focus only",15/*EditButton*/);
	expropertieslist1.Add("EditPage","show on focus only",6/*EditPage*/);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	193
   | 
  
	  Is it possible to decode/view the control's Layout property 
	
		
			
public void init()
{
	COM com_Print;
	anytype var_Print;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.Select(expropertieslist1);
	// Add 'exprint.dll(ExPrint.dll)' reference to your project.
	// Add 'ExPrint 1.0 Control Library(ExPrint.dll)' reference to your project.
	var_Print = COM::createFromObject(new EXPRINTLib.exprint()); com_Print = var_Print;
		print( com_Print.Decode64TextW(expropertieslist1.Layout()) );
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	192
   | 
  
	  Does your control supports scrolling by touching the screen 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.AutoDrag(4112/*exAutoDragScrollOnShortTouch | exAutoDragScroll*/);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	191
   | 
  
	  If I enabled the list filter on runtime, the user can click on [x] and close the filter text. Can I disabled this action 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.AllowMultipleValuesOnEnum(true);
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.Sort(COMVariant::createFromBoolean(true));
	expropertieslist1.FilterBarPromptVisible(1/*exFilterBarAlwaysVisible*/);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	190
   | 
  
	  Is it possible to specify a different background/foreground color for the property from the cursor, aka hot item 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.HotBackColor(WinApi::RGB2int(0,0,255));
	expropertieslist1.HotForeColor(WinApi::RGB2int(255,255,255));
	expropertieslist1.SelBackColor(WinApi::RGB2int(0,0,128));
	expropertieslist1.SelForeColor(WinApi::RGB2int(255,255,255));
}
			 
		 
	 
   | 
  | 
	189
   | 
  
	  My development environment does not have any Object,GetOcx,DefaultDispatch,GetControlUnknown,nativeObject, ...  property, is there any alternative I can pass the component to PrintExt so I can get printed 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.Template("Dim p;p = CreateObject(`Exontrol.Print`);p.PrintExt = Me;p.AutoRelease = False;p.Preview();");
}
			 
		 
	 
   | 
  | 
	188
   | 
  
	  How can I display checkboxes for flags values only 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.AllowMultipleValuesOnEnum(true);
	var_Property = expropertieslist1.Add("Nextevent",COMVariant::createFromInt(81),8/*EditEnum*/); com_Property = var_Property;
		com_Property.AddValue(1,"Option A");
		com_Property.AddValue(2,"Option B");
		com_Property.AddValue(3,"Option C");
		com_Property.AddValue(4,"Option D");
		com_Property.AddValue(16,"Flag A");
		com_Property.AddValue(32,"Flag B");
		com_Property.AddValue(64,"Flag C");
		com_Property.AddValue(128,"Flag D");
	expropertieslist1.Refresh();
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	187
   | 
  
	  Is is possible to display a checkbox on ENUM types 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.AllowMultipleValuesOnEnum(true);
	var_Property = expropertieslist1.Add("Nextevent",COMVariant::createFromInt(5),8/*EditEnum*/); com_Property = var_Property;
		com_Property.AddValue(1,"Flag A");
		com_Property.AddValue(2,"Flag B");
		com_Property.AddValue(4,"Flag C");
		com_Property.AddValue(8,"Flag D");
		com_Property.AddValue(16,"Flag E");
	expropertieslist1.Refresh();
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	186
   | 
  
	  Is it possible to display the full path in the EditFolder editor 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	var_Property = expropertieslist1.Add("Folder","c:\\",18/*EditFolder*/); com_Property = var_Property;
		com_Property.Option(12/*exEditFolderTitle*/,"Current Folder");
		com_Property.Option(15/*exEditFolderShowEditBox*/,COMVariant::createFromBoolean(false));
		com_Property.Option(17/*exEditFolderShowPath*/,COMVariant::createFromBoolean(true));
}
			 
		 
	 
   | 
  | 
	185
   | 
  
	  How can I include a "New Folder" button so user can create new folders when using the EditFolder form 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	var_Property = COM::createFromObject(expropertieslist1.Add("Folder","",18/*EditFolder*/)); com_Property = var_Property;
	com_Property.Option(16/*exEditFolderAllowNewFolder*/,COMVariant::createFromBoolean(true));
}
			 
		 
	 
   | 
  | 
	184
   | 
  
	  Is it possible to show always the selection in the files/folders list in the EditFolder dialog 
	
		
			
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	var_Property = COM::createFromObject(expropertieslist1.Add("Folder","",18/*EditFolder*/)); com_Property = var_Property;
	com_Property.Option(14/*exEditFolderNewUI*/,COMVariant::createFromBoolean(true));
}
			 
		 
	 
   | 
  | 
	183
   | 
  
	  How can I hide the editbox in the EditFolder editor 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	var_Property = COM::createFromObject(expropertieslist1.Add("Folder","",18/*EditFolder*/)); com_Property = var_Property;
	com_Property.Option(15/*exEditFolderShowEditBox*/,COMVariant::createFromBoolean(false));
}
			 
		 
	 
   | 
  | 
	182
   | 
  
	  How can I include the files in the in the EditFolder editor 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	var_Property = COM::createFromObject(expropertieslist1.Add("Folder","",18/*EditFolder*/)); com_Property = var_Property;
	com_Property.Option(13/*exEditFolderIncludeFiles*/,COMVariant::createFromBoolean(true));
}
			 
		 
	 
   | 
  | 
	181
   | 
  
	  Is it possible to change the caption in the EditFolder editor 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	var_Property = COM::createFromObject(expropertieslist1.Add("Folder","",18/*EditFolder*/)); com_Property = var_Property;
	com_Property.Option(12/*exEditFolderTitle*/,"Select a directory...");
}
			 
		 
	 
   | 
  | 
	180
   | 
  
	  Is it possible to filter for properties that contains a specified text 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.Sort(COMVariant::createFromBoolean(true));
	expropertieslist1.FilterBarPromptVisible(true);
	expropertieslist1.FilterBarPrompt("<font ;7><fgcolor=FF0000><c>Start Filtering...");
	expropertieslist1.FilterBarPromptPattern("back");
	expropertieslist1.IncrementalSearch(1/*exContains*/);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	179
   | 
  
	  How can I filter the properties at runtime 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.Sort(COMVariant::createFromBoolean(true));
	expropertieslist1.FilterBarPromptVisible(true);
	expropertieslist1.FilterBarPrompt("<font ;7><fgcolor=FF0000><c>Start Filtering...");
	expropertieslist1.FilterBarPromptPattern("Back");
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	178
   | 
  
	  Is it possible to change the caption being displayed in the filter bar 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.Sort(COMVariant::createFromBoolean(true));
	expropertieslist1.FilterBarPromptVisible(true);
	expropertieslist1.FilterBarPrompt("<font ;7><fgcolor=FF0000><c>Start Filtering...");
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	177
   | 
  
	  How can I enable the filter-prompt feature 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.Sort(COMVariant::createFromBoolean(true));
	expropertieslist1.FilterBarPromptVisible(true);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	176
   | 
  
	  How do I specify the height of the control's header bar 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.HeaderVisible(true);
	expropertieslist1.HeaderHeight(36);
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.Sort(COMVariant::createFromBoolean(true));
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	175
   | 
  
	  Is it possible to display a checkbox for ENUM types that allow BIT combinations 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.AllowMultipleValuesOnEnum(true);
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.Sort(COMVariant::createFromBoolean(true));
	expropertieslist1.FilterBarPromptVisible(true);
	expropertieslist1.FilterBarPromptPattern("Inc");
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	174
   | 
  
	  Can I add different EditFile entries with different filters 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Text File","text.txt",17/*EditFile*/)); com_Property = var_Property;
	com_Property.Option(9/*exEditFileFilter*/,"Text Files (*.txt)|*.txt");
	var_Property = COM::createFromObject(expropertieslist1.Add("INI File","text.ini",17/*EditFile*/)); com_Property = var_Property;
	com_Property.Option(9/*exEditFileFilter*/,"INI Files (*.ini)|*.ini");
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	173
   | 
  
	  Is it possible to expand items/entries when user types for searching properties 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.ExpandOnSearch(true);
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	172
   | 
  
	  Is it possible to show ticks on the slider control 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.Add("Slider",COMVariant::createFromInt(50),16/*EditSlider*/);
	var_Property = expropertieslist1.Add("Slider w/h ticks",COMVariant::createFromInt(50),16/*EditSlider*/); com_Property = var_Property;
		com_Property.SliderStep(10);
		com_Property.SliderTickFrequency(10);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	171
   | 
  
	  How can I edit a number between a range or interval 
	
		
			
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = expropertieslist1.Add("Slider",COMVariant::createFromInt(50),16/*EditSlider*/); com_Property = var_Property;
		com_Property.Numeric(true);
		com_Property.SpinStep(0);
		com_Property.SliderWidth(0);
		com_Property.SliderStep(0);
		com_Property.SliderMin(0);
		com_Property.SliderMax(100);
}
			 
		 
	 
   | 
  | 
	170
   | 
  
	  How can I edit a number between a range or interval 
	
		
			
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = expropertieslist1.Add("Slider","0.5",16/*EditSlider*/); com_Property = var_Property;
		com_Property.NumericFloat(true);
		com_Property.SpinStep(0);
		com_Property.SliderWidth(0);
		com_Property.SliderStep(0);
		com_Property.SliderMin(0);
		com_Property.SliderMax(1);
}
			 
		 
	 
   | 
  | 
	169
   | 
  
	  How can I add a slider or track bar editor, with a fixed size 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Slider","0.5",16/*EditSlider*/)); com_Property = var_Property;
	com_Property.SliderWidth(48);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	168
   | 
  
	  How can I add a slider or track bar editor, so it covers half of the cell 
	
		
			
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Slider","0.5",16/*EditSlider*/)); com_Property = var_Property;
	com_Property.SliderWidth(-50);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	167
   | 
  
	  How can I add a slider or track bar editor, so it covers the full cell 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Slider","0.5",16/*EditSlider*/)); com_Property = var_Property;
	com_Property.SliderWidth(-100);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	166
   | 
  
	  How can I add a spin editor within a range or interval of float numbers 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.AllowSpin(true);
	var_Property = expropertieslist1.Add("Slider","0.5",16/*EditSlider*/); com_Property = var_Property;
		com_Property.NumericFloat(true);
		com_Property.SpinStep(".01");
		com_Property.SliderWidth(0);
		com_Property.SliderMin(0);
		com_Property.SliderMax(1);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	165
   | 
  
	  How can I add a spin editor within a range or interval of numbers 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.AllowSpin(true);
	var_Property = expropertieslist1.Add("Slider",COMVariant::createFromInt(10),16/*EditSlider*/); com_Property = var_Property;
		com_Property.Numeric(true);
		com_Property.SliderWidth(0);
		com_Property.SliderMin(5);
		com_Property.SliderMax(15);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	164
   | 
  
	  Can I use your HTML format to display a property 
	
		
			
 
 
public void init()
{
	COM com_Property,com_Property1;
	anytype var_Property,var_Property1;
	str var_s,var_s1;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
	expropertieslist1.SelBackColor(0x1000000);
	expropertieslist1.SelForeColor(WinApi::RGB2int(0,0,0));
	var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql";
	var_s = var_s + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0";
	var_s = var_s + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN";
	var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=";
	expropertieslist1.Images(COMVariant::createFromStr(var_s));
	expropertieslist1.ColumnWidth(COMVariant::createFromInt(0),304);
	var_Property = expropertieslist1.Add("I1","link1",1/*Edit*/); com_Property = var_Property;
		var_s1 = "<br>text<off 4>subscript</off><off -4>sup<off -4>ers</off>cript</off> icons <img>1</img>, <img>2</img>, ... pictures <img>p1</im";
		var_s1 = var_s1 + "g>, <img>p2</img> <br><br>text <b>bold</b>, <i>italic</i>, <u>underline</u>, <s>strikeout</s>, ...<br><dotline>and so on...<br> ";
		var_s1 = var_s1 + "<a>anchor</a> or <a2>hyperlink</a><br><fgcolor=FF0000>fgcolor</fgcolor> or <bgcolor=00FF00>bgcolor</bgcolor>";
		com_Property.HTMLName(var_s1);
		com_Property.Height(128);
	var_Property1 = expropertieslist1.Add("I2","link1",1/*Edit*/); com_Property1 = var_Property1;
		com_Property1.HTMLName("<sha ;;0>antialiasing</sha> format");
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	163
   | 
  
	  How can I display I picture to a property 
	
		
			
 
 
public void init()
{
	COM com_Property,com_Property1;
	anytype var_Property,var_Property1;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
	expropertieslist1.HTMLPicture("pic2","c:\\exontrol\\images\\auction.gif");
	var_Property = expropertieslist1.Add("Picture 1","link1",1/*Edit*/); com_Property = var_Property;
		com_Property.HTMLName("<img>pic1</img> <b>1</b>");
		com_Property.Height(48);
	expropertieslist1.Add("Edit","text",1/*Edit*/);
	var_Property1 = expropertieslist1.Add("Picture 2","link2",1/*Edit*/); com_Property1 = var_Property1;
		com_Property1.HTMLName("<img>pic2</img> <b>2</b>");
		com_Property1.Height(32);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	162
   | 
  
	  How do I display an icon to a property 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	str var_s;
	;
	super();
	expropertieslist1.DefaultItemHeight(18);
	expropertieslist1.BeginUpdate();
	var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql";
	var_s = var_s + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0";
	var_s = var_s + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN";
	var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=";
	expropertieslist1.Images(COMVariant::createFromStr(var_s));
	var_Property = COM::createFromObject(expropertieslist1.Add("I1","link1",1/*Edit*/)); com_Property = var_Property;
	com_Property.HTMLName("<img>1</img> <b>1</b>");
	expropertieslist1.Add("Edit","text",1/*Edit*/);
	var_Property = COM::createFromObject(expropertieslist1.Add("I2","link1",1/*Edit*/)); com_Property = var_Property;
	com_Property.HTMLName("<img>2</img> <b>2</b>");
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	161
   | 
  
	  How do I specify the height of a property 
	
		
			
 
 
public void init()
{
	COM com_Property,com_Property1;
	anytype var_Property,var_Property1;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
	expropertieslist1.HTMLPicture("pic2","c:\\exontrol\\images\\auction.gif");
	var_Property = expropertieslist1.Add("Picture 1","link1",1/*Edit*/); com_Property = var_Property;
		com_Property.HTMLName("<img>pic1</img> <b>1</b>");
		com_Property.Height(48);
	expropertieslist1.Add("Edit","text",1/*Edit*/);
	var_Property1 = expropertieslist1.Add("Picture 2","link2",1/*Edit*/); com_Property1 = var_Property1;
		com_Property1.HTMLName("<img>pic2</img> <b>2</b>");
		com_Property1.Height(48);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	160
   | 
  
	  How do I edit a float number 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.AllowSpin(true);
	var_Property = expropertieslist1.Add("Edit","0.5",1/*Edit*/); com_Property = var_Property;
		com_Property.NumericFloat(true);
		com_Property.SpinStep("0.1");
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	159
   | 
  
	  How do I change the step for a spin 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.AllowSpin(true);
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit",COMVariant::createFromInt(10),1/*Edit*/)); com_Property = var_Property;
	com_Property.SpinStep(10);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	158
   | 
  
	  How do I sort the items in a drop down editor 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	var_Property = expropertieslist1.Add("Enum",COMVariant::createFromInt(1),8/*EditEnum*/); com_Property = var_Property;
		com_Property.DropDownItems(1);
		com_Property.AddValue(1,"First choice");
		com_Property.AddValue(2,"Second choice");
		com_Property.AddValue(3,"Third choice");
		com_Property.SortItems();
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	157
   | 
  
	  How do I specify the number of visible items in a drop down editor 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	var_Property = expropertieslist1.Add("Enum",COMVariant::createFromInt(1),8/*EditEnum*/); com_Property = var_Property;
		com_Property.DropDownItems(1);
		com_Property.AddValue(1,"First choice");
		com_Property.AddValue(2,"Second choice");
		com_Property.AddValue(3,"Third choice");
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	156
   | 
  
	  How do I bold a property 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit","text",1/*Edit*/)); com_Property = var_Property;
	com_Property.Bold(true);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	155
   | 
  
	  How do I disable or enable a property 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit","text",1/*Edit*/)); com_Property = var_Property;
	com_Property.Enabled(false);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	154
   | 
  
	  How do I specify a tooltip for a property 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.AllowTooltip(true);
	var_Property = COM::createFromObject(expropertieslist1.Add("ToolTip","",1/*Edit*/)); com_Property = var_Property;
	com_Property.ToolTip("This is a bit of text that shows up when the user hovers the cursor");
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	153
   | 
  
	  How do I specify the masking character 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = expropertieslist1.Add("Edit",COMVariant::createFromInt(12),1/*Edit*/); com_Property = var_Property;
		com_Property.Mask("##");
		com_Property.MaskChar(48);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	152
   | 
  
	  How do I specify a mask 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit",COMVariant::createFromInt(12),1/*Edit*/)); com_Property = var_Property;
	com_Property.Mask("##");
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	151
   | 
  
	  How do I edit a number 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.AllowSpin(true);
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit",COMVariant::createFromInt(15),1/*Edit*/)); com_Property = var_Property;
	com_Property.Numeric(true);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	150
   | 
  
	  How do I change the foreground color for a cell 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit","text",1/*Edit*/)); com_Property = var_Property;
	com_Property.CellForeColor(COMVariant::createFromInt(0),WinApi::RGB2int(255,0,0));
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	149
   | 
  
	  How do I change the foreground color for a cell 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit","text",1/*Edit*/)); com_Property = var_Property;
	com_Property.CellForeColor(COMVariant::createFromInt(1),WinApi::RGB2int(255,0,0));
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	148
   | 
  
	  How do I change the background color for a cell 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit","text",1/*Edit*/)); com_Property = var_Property;
	com_Property.CellBackColor(COMVariant::createFromInt(0),WinApi::RGB2int(255,0,0));
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	147
   | 
  
	  How do I change the background color for a cell 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit","text",1/*Edit*/)); com_Property = var_Property;
	com_Property.CellBackColor(COMVariant::createFromInt(1),WinApi::RGB2int(255,0,0));
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	146
   | 
  
	  How do I change the background color for a property 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit","text",1/*Edit*/)); com_Property = var_Property;
	com_Property.BackColor(WinApi::RGB2int(255,0,0));
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	145
   | 
  
	  How do I change the foreground color for a property 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit","text",1/*Edit*/)); com_Property = var_Property;
	com_Property.ForeColor(WinApi::RGB2int(255,0,0));
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	144
   | 
  
	  How do I associate an extra data to a property 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Color",COMVariant::createFromInt(255),2/*EditColor*/)); com_Property = var_Property;
	com_Property.UserData("your data");
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	143
   | 
  
	  How do I get the caption of the property, as it is displayed in the browser 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Color",COMVariant::createFromInt(255),2/*EditColor*/)); com_Property = var_Property;
	com_Property.ID(12345);
	var_Property = COM::createFromObject(expropertieslist1.Add(expropertieslist1.Property("Color").DisplayValue(),"",-1/*Label*/)); com_Property = var_Property;
	com_Property.Bold(true);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	142
   | 
  
	  How do I get the value of the property 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit","text",1/*Edit*/)); com_Property = var_Property;
	com_Property.ID(12345);
	var_Property = COM::createFromObject(expropertieslist1.Add(expropertieslist1.Property("Edit").Value(),"",-1/*Label*/)); com_Property = var_Property;
	com_Property.Bold(true);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	141
   | 
  
	  How do I make a property read only 
	
		
			
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit","text",1/*Edit*/)); com_Property = var_Property;
	com_Property.Locked(true);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	140
   | 
  
	  How do I specify a description for a property 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BeginUpdate();
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit","text",1/*Edit*/)); com_Property = var_Property;
	com_Property.Description("This is just a description");
	expropertieslist1.SelectedProperty(expropertieslist1.Property("Edit"));
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	139
   | 
  
	  How do I get the identifer of the property 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	var_Property = COM::createFromObject(expropertieslist1.Add("Edit","text",1/*Edit*/)); com_Property = var_Property;
	com_Property.ID(12345);
	var_Property = COM::createFromObject(expropertieslist1.Add(expropertieslist1.Property("Edit").ID(),"",-1/*Label*/)); com_Property = var_Property;
	com_Property.Bold(true);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	138
   | 
  
	  How do I get the type of the property 
	
		
			
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.Add("Edit","text",1/*Edit*/);
	var_Property = COM::createFromObject(expropertieslist1.Add(expropertieslist1.Property("Edit").Type(),"",-1/*Label*/)); com_Property = var_Property;
	com_Property.Bold(true);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	137
   | 
  
	  How do I get the name of the property 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.Add("Edit","text",1/*Edit*/);
	var_Property = COM::createFromObject(expropertieslist1.Add(expropertieslist1.Property("Edit").Name(),"",-1/*Label*/)); com_Property = var_Property;
	com_Property.Bold(true);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	136
   | 
  
	  How do I select a folder 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Folder","",18/*EditFolder*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	135
   | 
  
	  How do I select a file 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("File","",17/*EditFile*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	134
   | 
  
	  How do I slider or trackbar editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Slider",COMVariant::createFromInt(50),16/*EditSlider*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	133
   | 
  
	  How do I add a button 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Button","Aaa",15/*EditButton*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	132
   | 
  
	  How do I add a check box editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Check",COMVariant::createFromBoolean(true),14/*EditCheck*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	131
   | 
  
	  How do I add a color editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Color",COMVariant::createFromInt(255),13/*EditColorPage*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	130
   | 
  
	  How do I add a new object properties inside the control 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.Add("MySelf 1",expropertieslist1,12/*EditObject*/);
	expropertieslist1.Add("MySelf 2",expropertieslist1,12/*EditObject*/);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	129
   | 
  
	  How do I add a new objects inside the control 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.Add("MySelf",expropertieslist1,12/*EditObject*/);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	128
   | 
  
	  How do I add a drop down editor with some predefined values 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	var_Property = expropertieslist1.Add("DropDown","Aaa",11/*EditDropDown*/); com_Property = var_Property;
		com_Property.AddValue(1,"First choice");
		com_Property.AddValue(2,"Second choice");
		com_Property.AddValue(3,"Third choice");
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	127
   | 
  
	  How do I add a password editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Password","pass",10/*EditPassword*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	126
   | 
  
	  How do I add a date picker editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Date","1/1/2001",9/*EditDate*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	125
   | 
  
	  How do I add a drop down editor with some predefined values 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	var_Property = expropertieslist1.Add("Enum",COMVariant::createFromInt(1),8/*EditEnum*/); com_Property = var_Property;
		com_Property.AddValue(1,"First choice");
		com_Property.AddValue(2,"Second choice");
		com_Property.AddValue(3,"Third choice");
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	124
   | 
  
	  How do I add a boolean editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Boolean",COMVariant::createFromBoolean(true),7/*EditBoolean*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	123
   | 
  
	  How do I add a button or a page editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Page","",6/*EditPage*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	122
   | 
  
	  How do I add a picture editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Picture",,5/*EditPicture*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	121
   | 
  
	  How do I add a font editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Font","Arial",4/*EditFontName*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	120
   | 
  
	  How do I add a font editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Font","Arial",3/*EditFont*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	119
   | 
  
	  How do I add a color editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Color",COMVariant::createFromInt(255),2/*EditColor*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	118
   | 
  
	  How do I add an edit 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Add("Edit","text",1/*Edit*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	117
   | 
  
	  How do I specify the character sets being included in the font editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Option(7/*exFontCharSet*/,"0");
	expropertieslist1.Add("Font","Arial",4/*EditFontName*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	116
   | 
  
	  How do I show or hide the bottom scroll bar in the drop down date picker calendar editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Option(6/*exDateShowScroll*/,COMVariant::createFromBoolean(false));
	expropertieslist1.Add("Date","1/1/2001",9/*EditDate*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	115
   | 
  
	  How do highlight the "Today" date is the drop down date picker calendar editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Option(5/*exDateMarkToday*/,COMVariant::createFromBoolean(true));
	expropertieslist1.Add("Date","1/1/2001",9/*EditDate*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	114
   | 
  
	  How do I show or hide the "Today" button is the drop down date picker calendar editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Option(4/*exDateShowTodayButton*/,COMVariant::createFromBoolean(false));
	expropertieslist1.Add("Date","1/1/2001",9/*EditDate*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	113
   | 
  
	  How to specify the first day of the week in the drop down date picker calendar editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Option(3/*exDateFirstWeekDay*/,COMVariant::createFromInt(1));
	expropertieslist1.Add("Date","1/1/2001",9/*EditDate*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	112
   | 
  
	  How to specifies the shortcut for the weekdays to be displayed in the drop down date picker calendar editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Option(2/*exDateWeekDays*/,"Du Lu Ma Mi Jo Vi Si");
	expropertieslist1.Add("Date","1/1/2001",9/*EditDate*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	111
   | 
  
	  How can I change the name of the months in the drop down date picker calendar editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Option(1/*exDateMonths*/,"Janvier Février Mars Avril Mai Juin Juillet Août Septembre Octobre Novembre Décembre");
	expropertieslist1.Add("Date","1/1/2001",9/*EditDate*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	110
   | 
  
	  Can I change the "Today" caption being displayed in the drop down date picker calendar editor 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.Option(0/*exDateTodayCaption*/,"Azi");
	expropertieslist1.Add("Date","1/1/2001",9/*EditDate*/);
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	109
   | 
  
	  How can I open the drop down editors, using a different than F4 key 
	
		
			
public void init()
{
	;
	super();
	expropertieslist1.EditOnSelect(false);
	expropertieslist1.EditOnKey(113);
	expropertieslist1.Select(expropertieslist1);
}
			 
		 
	 
   | 
  | 
	108
   | 
  
	  How do I display the color properties as RGB 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.BeginUpdate();
	expropertieslist1.DisplayColorAs(1/*exRGB*/);
	expropertieslist1.Add("Red",COMVariant::createFromInt(255),2/*EditColor*/);
	expropertieslist1.Add("Blue",COMVariant::createFromInt(16711680),2/*EditColor*/);
	expropertieslist1.EndUpdate();
}
			 
		 
	 
   | 
  | 
	107
   | 
  
	  How do I get the list of properties being listed as a string 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.Select(expropertieslist1);
	var_Property = COM::createFromObject(expropertieslist1.Add(" _ toString _ ",COMVariant::createFromStr(expropertieslist1.ToString(0/*exLiterals*/)),15/*EditButton*/)); com_Property = var_Property;
	com_Property.Bold(true);
	expropertieslist1.Sort(COMVariant::createFromBoolean(true));
}
			 
		 
	 
   | 
  | 
	106
   | 
  
	  How can I display a picture to a property 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.DefaultItemHeight(48);
	expropertieslist1.HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
	expropertieslist1.HTMLPicture("pic2","c:\\exontrol\\images\\auction.gif");
	var_Property = COM::createFromObject(expropertieslist1.Add("Picture 1","link1",1/*Edit*/)); com_Property = var_Property;
	com_Property.HTMLName("Pic <img>pic1</img> or <img>pic2</img>");
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	105
   | 
  
	  How do I show or hide the properties with multiple parameters 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.ShowMultipleParams(false);
	expropertieslist1.Select(expropertieslist1);
}
			 
		 
	 
   | 
  | 
	104
   | 
  
	  How can I add a hyperlink or anchor element 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.BackColor(WinApi::RGB2int(255,255,255));
	expropertieslist1.SelBackColor(expropertieslist1.BackColor());
	expropertieslist1.SelForeColor(expropertieslist1.ForeColor());
	var_Property = COM::createFromObject(expropertieslist1.Add("Link 1","link1",1/*Edit*/)); com_Property = var_Property;
	com_Property.HTMLName("Link <a1>one</s>");
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	103
   | 
  
	  Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.SelBackColor(WinApi::RGB2int(255,128,255));
	expropertieslist1.FormatAnchor(false,"<b><u><fgcolor=880000> </fgcolor></u></b>");
	var_Property = COM::createFromObject(expropertieslist1.Add("Link 1","link1",1/*Edit*/)); com_Property = var_Property;
	com_Property.HTMLName("Link <a1>one</s>");
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	102
   | 
  
	  Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions 
	
		
			
 
 
public void init()
{
	COM com_Property;
	anytype var_Property;
	;
	super();
	expropertieslist1.SelBackColor(WinApi::RGB2int(255,128,255));
	expropertieslist1.FormatAnchor(true,"<b><u> </u></b>");
	var_Property = COM::createFromObject(expropertieslist1.Add("Link 1","link1",1/*Edit*/)); com_Property = var_Property;
	com_Property.HTMLName("Link <a1>one</s>");
	expropertieslist1.Refresh();
}
			 
		 
	 
   | 
  | 
	101
   | 
  
	  How do I specify the indentation of the child items relative to their parents 
	
		
			
 
 
public void init()
{
	;
	super();
	expropertieslist1.AutoIndent(false);
	expropertieslist1.Indent(8);
	expropertieslist1.Select(expropertieslist1);
	expropertieslist1.ExpandAll();
}
			 
		 
	 
   |