LEADTOOLS Annotations (Leadtools.Annotations assembly)
LEAD Technologies, Inc

UseXPStyleToolBar Property

Example 





Gets or sets a value that indicates whether the annotation toolbar is drawn with the new XP style look.
Syntax
public bool UseXPStyleToolBar {get; set;}
'Declaration
 
Public Property UseXPStyleToolBar As Boolean
'Usage
 
Dim instance As AnnAutomationManager
Dim value As Boolean
 
instance.UseXPStyleToolBar = value
 
value = instance.UseXPStyleToolBar
public bool UseXPStyleToolBar {get; set;}
 get_UseXPStyleToolBar();
set_UseXPStyleToolBar(value);
public:
property bool UseXPStyleToolBar {
   bool get();
   void set (    bool value);
}

Property Value

true to use new XP style look; otherwise, false.
Remarks
When the value of this property is true (default) the annotation toolbar will be displayed with the new XP style look. This means that the button images will be drawn with 24x24 pixel images using an alpha channel. For more information, refer to New Annotation Features of Version 14.5.
Example
 
Public Sub AnnAutomationManager_UseXPStyleToolBar(ByVal manager As AnnAutomationManager, ByVal useXPStyleToolBar As Boolean)
   manager = New AnnAutomationManager()
   manager.UseXPStyleToolBar = useXPStyleToolBar
   manager.CreateDefaultObjects()
   manager.CreateToolBar()
   manager.ToolBar.Dock = DockStyle.Top
   manager.ToolBar.BringToFront()
   manager.ToolBar.Appearance = ToolBarAppearance.Flat
End Sub
public void AnnAutomationManager_UseXPStyleToolBar(AnnAutomationManager manager, bool useXPStyleToolBar)
{
   manager = new AnnAutomationManager();
   manager.UseXPStyleToolBar = useXPStyleToolBar;
   manager.CreateDefaultObjects();
   manager.CreateToolBar();
   manager.ToolBar.Dock = DockStyle.Top;
   manager.ToolBar.BringToFront();
   manager.ToolBar.Appearance = ToolBarAppearance.Flat;
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

AnnAutomationManager Class
AnnAutomationManager Members

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.