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

AutoSizeAfterEdit Property

Example 





Gets or sets a value indicating whether the designer will automatically resize the AnnTextObject being edited after the user finish editing it.
Syntax
public bool AutoSizeAfterEdit {get; set;}
'Declaration
 
Public Property AutoSizeAfterEdit As Boolean
'Usage
 
Dim instance As AnnTextEditDesigner
Dim value As Boolean
 
instance.AutoSizeAfterEdit = value
 
value = instance.AutoSizeAfterEdit
public bool AutoSizeAfterEdit {get; set;}
 get_AutoSizeAfterEdit();
set_AutoSizeAfterEdit(value);
public:
property bool AutoSizeAfterEdit {
   bool get();
   void set (    bool value);
}

Property Value

true for the designer to automatically resize the AnnTextObject being edited after the user finish editing it, false; otherwise. Default value is false.
Remarks

When the value of this property is set to true, the designer will call the AnnTextObject.AutoSize method when it has finished editing the object.

Example
 
Public Sub AnnTextEditDesigner_AutoSizeAfterEditExample(ByVal automation As AnnAutomation)
   ' We will hook to the Automation designer changed event,
   ' if the designer is a Text edit designer, we will set
   ' its AutoSizeAfterEdit value to true
   AddHandler automation.CurrentDesignerChanged, AddressOf automation_CurrentDesignerChanged
End Sub

Private Sub automation_CurrentDesignerChanged(ByVal sender As Object, ByVal e As EventArgs)
   ' Check if current designer is AnnTextEditDesigner
   Dim automation As AnnAutomation = CType(sender, AnnAutomation)
   If Not automation.CurrentDesigner Is Nothing Then
      If TypeOf automation.CurrentDesigner Is AnnTextEditDesigner Then
         ' Yes, set its AutoSizeAfterEdit value to true
         Dim textEditDesigner As AnnTextEditDesigner = CType(automation.CurrentDesigner, AnnTextEditDesigner)
         textEditDesigner.AutoSizeAfterEdit = True
      End If
   End If
End Sub
public void AnnTextEditDesigner_AutoSizeAfterEditExample(AnnAutomation automation)
{
   // We will hook to the Automation designer changed event,
   // if the designer is a Text edit designer, we will set
   // its AutoSizeAfterEdit value to true
   automation.CurrentDesignerChanged += new EventHandler(automation_CurrentDesignerChanged);
}

private void automation_CurrentDesignerChanged(object sender, EventArgs e)
{
   // Check if current designer is AnnTextEditDesigner
   AnnAutomation automation = sender as AnnAutomation;
   if(automation.CurrentDesigner != null)
   {
      AnnTextEditDesigner textEditDesigner = automation.CurrentDesigner as AnnTextEditDesigner;
      if(textEditDesigner != null)
      {
         // Yes, set its AutoSizeAfterEdit value to true
         textEditDesigner.AutoSizeAfterEdit = true;
      }
   }
}
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

AnnTextEditDesigner Class
AnnTextEditDesigner Members

 

 


Products | Support | Contact Us | Copyright Notices

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