LEADTOOLS Annotations (Leadtools.Annotations assembly)

UseXPStyleToolBar Property

Show in webframe
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:
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
Copy Code  
Imports Leadtools
Imports Leadtools.Annotations
Imports Leadtools.WinForms
Imports Leadtools.Codecs

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
using Leadtools;
using Leadtools.Annotations;
using Leadtools.WinForms;
using Leadtools.Codecs;

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

See Also

Reference

AnnAutomationManager Class
AnnAutomationManager Members

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.