←Select platform

Fill Property

Summary
Gets or sets the AnnBrush to use when filling the interior of this AnnContainer.
Syntax
C#
VB
Objective-C
C++
Java
public AnnBrush Fill { get; set; } 
Public Property Fill As AnnBrush 
@property (nonatomic) LTAnnBrush* fill; 
public AnnBrush getFill() 
public void setFill(AnnBrush fill) 
public:  
   property AnnBrush^ Fill 
   { 
      AnnBrush^ get() 
      void set(AnnBrush^ value) 
   } 

Property Value

The AnnBrush 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

This example will give the container a blue border with thickness of 2 and a semi-transparent brush.

C#
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); 
} 
Requirements

Target Platforms

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Annotations.Engine Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.