Class ISubTitleRenderEventArgs
Specifies the SubTitle Render Event arguments.
Inheritance
System.Object
ISubTitleRenderEventArgs
Implements
System.IEquatable<ISubTitleRenderEventArgs>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class ISubTitleRenderEventArgs : Object, IEquatable<ISubTitleRenderEventArgs>
Constructors
ISubTitleRenderEventArgs()
Declaration
public ISubTitleRenderEventArgs()
Properties
Cancel
Defines the event cancel status
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Defines the name of the event
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Text
Defines the current subtitle text
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
X
Defines the current subtitle text x location
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Y
Defines the current subtitle text y location
Declaration
public double Y { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(ISubTitleRenderEventArgs)
Declaration
public bool Equals(ISubTitleRenderEventArgs iSubTitleRenderEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ISubTitleRenderEventArgs | iSubTitleRenderEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>