C#
VB
WinRT C#
C++
This enumeration contains all flags that are needed by the VignnetCommand. It includes values used to select the shape of the vignette object and the type of color filling.
[FlagsAttribute()]
public enum VignnetCommandFlags
<FlagsAttribute()>
Public Enum VignnetCommandFlags
Inherits System.Enum
Implements System.IComparable, System.IConvertible, System.IFormattable
[FlagsAttribute()]
public enum VignnetCommandFlags : System.IComparable, System.IConvertible, System.IFormattable
Leadtools.ImageProcessing.SpecialEffects.VignnetCommandFlags = function() { };
Leadtools.ImageProcessing.SpecialEffects.VignnetCommandFlags.prototype = {
Fillin = 0x00000000,
Square = 0x00000000,
Rectangle = 0x00000001,
Circle = 0x00000002,
Ellipse = 0x00000003,
FillOut = 0x00000010,
};
[FlagsAttribute()]
public enum class VignnetCommandFlags : public System.Enum, System.IComparable, System.IConvertible, System.IFormattable
Members
Value | Member | Description |
---|---|---|
0x00000000 | Fillin | Use the VignetteColor property to fill the inside of the vignette object. |
0x00000000 | Square | Use a square vignette shape. |
0x00000001 | Rectangle | Use a rectangular vignette shape. |
0x00000002 | Circle | Use a circular vignette shape. |
0x00000003 | Ellipse | Use an elliptical vignette shape. |
0x00000010 | FillOut | Use the VignetteColor property to fill the outside of the vignette object. |
You can use a bitwise OR ( ¦ ) to specify one flag from each group.
Group | Flags |
Drawing Shape | Square, Rectangle, Circle, Ellipse |
Color Filling | Fillin, FillOut |
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET