(Leadtools.Annotations.Core)

Fill Property (AnnContainer)

Show in webframe
Example 





Gets or sets the object to use when filling the interior of this AnnContainer.
Syntax
public AnnBrush Fill {get; set;}
Public Property Fill As AnnBrush
public AnnBrush Fill {get; set;}
@property (nonatomic) LTAnnBrush* fill;
public AnnBrush getFill()
public void setFill(AnnBrush fill)
            
 
get_Fill();
set_Fill(value);
Object.defineProperty('Fill');

Property Value

The object to use when filling the interior of this AnnContainer. The default value is null.
Remarks

A value of null means do not fill the background of the container.

Example
Copy Code  
using Leadtools.Annotations.Automation;
using Leadtools.Annotations.Core;
using Leadtools.Codecs;

public void AnnContainer_Fill()
{
   // Get the container in the automation object
   AnnContainer container = _automation.Container;
   // Add a blue border
   container.Stroke = AnnStroke.Create(AnnSolidColorBrush.Create("Blue"), LeadLengthD.Create(2));
   // Add semi transparent black background
   container.Fill = AnnSolidColorBrush.Create("rgba(0, 0, 0, 0.5)");

   // Show it
   _automation.Invalidate(LeadRectD.Empty);
}
using Leadtools.Converters;
using Leadtools.Annotations.Automation;
using Leadtools.Controls;
using Leadtools.Annotations.Core;
using Leadtools.Codecs;

[TestMethod]
public void AnnContainer_Fill()
{
   // Get the container in the automation object
   AnnContainer container = _automation.Container;
   // Add a blue border
   container.Stroke = AnnStroke.Create(AnnSolidColorBrush.Create("Blue"), LeadLengthDHelper.Create(2));
   // Add semi transparent black background
   container.Fill = AnnSolidColorBrush.Create("rgba(0, 0, 0, 0.5)");

   // Show it
   _automation.Invalidate(LeadRectDHelper.Empty);
}
Requirements

Target Platforms

See Also

Reference

AnnContainer Class
AnnContainer Members

 

 


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