Class DrawLabelEventArgs
Provides data to the
Inheritance
System.Object
DrawLabelEventArgs
Namespace: Syncfusion.UI.Xaml.Controls.Navigation
Assembly: Syncfusion.SfRadialMenu.UWP.dll
Syntax
public class DrawLabelEventArgs : EventArgs
Constructors
DrawLabelEventArgs(Double, Brush, FontFamily, Double, String, Boolean)
Initializes a new instance of the DrawLabelEventArgs class.
Declaration
public DrawLabelEventArgs(double value, Brush foreground, FontFamily fontFamily, double fontSize, string text, bool handled)
Parameters
Type | Name | Description |
---|---|---|
System.Double | value | Value of the |
Windows.UI.Xaml.Media.Brush | foreground | Custom label foreground to drawn in |
Windows.UI.Xaml.Media.FontFamily | fontFamily | Custom label fontfamily to drawn in |
System.Double | fontSize | Custom label fontSize to drawn in |
System.String | text | Custom label to drawn in |
System.Boolean | handled | Value indicating whether to custom draw label in |
Properties
FontFamily
Gets or sets the fontfamily for the label to draw in
Declaration
public FontFamily FontFamily { get; set; }
Property Value
Type |
---|
Windows.UI.Xaml.Media.FontFamily |
FontSize
Gets or sets the fontsize for the label to draw in
Declaration
public double FontSize { get; set; }
Property Value
Type |
---|
System.Double |
Foreground
Gets or sets the foreground for the label to draw in
Declaration
public Brush Foreground { get; set; }
Property Value
Type |
---|
Windows.UI.Xaml.Media.Brush |
Handled
Gets or sets a value that indicates whether to draw custom draw labels in
Declaration
public bool Handled { get; set; }
Property Value
Type |
---|
System.Boolean |
Text
Gets or sets the text for custom label to draw in
Declaration
public string Text { get; set; }
Property Value
Type |
---|
System.String |
Value
Gets the value for the label to draw in
Declaration
public double Value { get; }
Property Value
Type |
---|
System.Double |