Property VLCommonDisplay.TVLCommonDisplay.Center
From Mitov Wiki Doc
				
				
				
				
																
				
				
								
				This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TVLCommonDisplay
| Contents | 
Syntax
Delphi:
property Center : Boolean read FCenter write SetTheCenter default True;
C++ Builder:
__property bool Center = { read=FCenter,  write=SetTheCenter,  default=True };
Summary
Center the image in the display.
Description
If set to True the image will be centered inside the display.
Otherwise the image will be aligned to the Left Top position
of the display.
Delphi example:
VLImageDisplay1.Center := True;
C++ Builder example:
VLImageDisplay1->Center = true;
Visual C++(MFC) example:
VLImageDisplay1.Center = true;
C# Example:
imageDisplay1.Center = true;
