ImageEn, unit iexUserInteractions |
|
TIEPenOptions.BrushSizeStrength
Declaration
property BrushSizeStrength: Double;
Description
Specifies how much the
BrushSize is affected by pen pressure.
The default of 0.75 means that the brush can be reduced by 75% the value of
BrushSize. Lower values mean pen pressure does not change
BrushSize as much, whereas larger values can cause very large brush size changes. Typical range 0.1 to 0.9.
Note:
◼If full pressure is applied, the Brush size will be
BrushSize. If minimum pressure is applied, the size will be
BrushSize *
BrushSizeStrength◼This option is used when
BrushSizeEnabled = enTrue or enAuto (with Alt key pressed)
Default: 0.75
// Pressure has a strong effect on brush size (i.e. makes brush much bigger)
ImageEnView1.BrushTool.PenEffects.BrushSizeStrength := 0.95;
ImageEnView1.BrushTool.PenEffects.BrushSizeEnabled := enTrue;