C#
VB
WinRT C#
C++
This enumeration contains all flags that are needed by the MosaicTilesCommand. It indicates whether to use arc-shaped or rectangular-shaped tiles, and what type of shadowing to use, if any.
[FlagsAttribute()]
public enum MosaicTilesCommandFlags
<FlagsAttribute()>
Public Enum MosaicTilesCommandFlags
Inherits System.Enum
Implements System.IComparable, System.IConvertible, System.IFormattable
[FlagsAttribute()]
public enum MosaicTilesCommandFlags : System.IComparable, System.IConvertible, System.IFormattable
Leadtools.ImageProcessing.SpecialEffects.MosaicTilesCommandFlags = function() { };
Leadtools.ImageProcessing.SpecialEffects.MosaicTilesCommandFlags.prototype = {
Cartesian = 0x00000000,
ShadowFlat = 0x00000000,
Polar = 0x00000001,
ShadowRGB = 0x00000010,
ShadowGray = 0x00000020,
};
[FlagsAttribute()]
public enum class MosaicTilesCommandFlags : public System.Enum, System.IComparable, System.IConvertible, System.IFormattable
Members
Value | Member | Description |
---|---|---|
0x00000000 | Cartesian | Draws rectangular tiles using Cartesian coordinates. If this flag is used, the TileWidth property will contain the tile width in pixels, and the TileHeight property will contain the tile height in pixels. |
0x00000000 | ShadowFlat | Do not apply a shadow. |
0x00000001 | Polar | Draw arc-shaped tiles using polar coordinates. If this flag is used, the TileWidth property will contain the angular component of the tile, in degrees, and the TileHeight property will contain the radial component of the tile in pixels. |
0x00000010 | ShadowRGB | Apply colored shadows. |
0x00000020 | ShadowGray | Apply grayscale shadows. |
You can use a bitwise OR ( ¦ ) to specify one flag from each group.
Group | Flags |
Drawing Shape | Cartesian, Polar |
Shadow | Flat, Gray, Colored |
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