Paint.StrokeMiter Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Return the paint's stroke miter value. -or- Set the paint's stroke miter value.
public virtual float StrokeMiter { [Android.Runtime.Register("getStrokeMiter", "()F", "GetGetStrokeMiterHandler")] get; [Android.Runtime.Register("setStrokeMiter", "(F)V", "GetSetStrokeMiter_FHandler")] set; }
[<get: Android.Runtime.Register("getStrokeMiter", "()F", "GetGetStrokeMiterHandler")>]
[<set: Android.Runtime.Register("setStrokeMiter", "(F)V", "GetSetStrokeMiter_FHandler")>]
member this.StrokeMiter : single with get, set
Property Value
the paint's miter limit, used whenever the paint's style is Stroke or StrokeAndFill.
- Attributes
Remarks
Property getter documentation:
Return the paint's stroke miter value. Used to control the behavior of miter joins when the joins angle is sharp.
Java documentation for android.graphics.Paint.getStrokeMiter()
.
Property setter documentation:
Set the paint's stroke miter value. This is used to control the behavior of miter joins when the joins angle is sharp. This value must be >= 0.
Java documentation for android.graphics.Paint.setStrokeMiter(float)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.