public AnnBrush Fill { get; set; }
Public Property Fill As AnnBrush
@property (nonatomic) LTAnnBrush* fill;
public AnnBrush getFill()
public void setFill(AnnBrush fill)
The object to use when filling the interior of this AnnContainer. The default value is null.
A value of null means do not fill the background of the container.
This example will give the container a blue border with thickness of 2 and a semi-transparent brush.
using LeadtoolsExamples.Common;
using Leadtools.Annotations.Automation;
using Leadtools.Annotations.Engine;
using Leadtools.Codecs;
using Leadtools.Annotations.WinForms;
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);
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document