Having trouble getting help?
Contact Support
Contact Support
AutoLabel Event in Windows Forms AutoLabel
26 Apr 20211 minute to read
A detailed explanation about the PropertyChanged event is given in the following section.
AutoLabel Event | Description |
---|---|
PropertyChanged | This event is fired when the LabeledControl, Gap or Position properties change. |
PropertyChanged Event
This event is fired when the LabeledControl, Gap or Position properties of this class change.
The event handler receives an argument of type SyncfusionPropertyChangedEventArgs containing data related to this event.
private void autoLabel1_PropertyChanged(object sender, Syncfusion.ComponentModel.SyncfusionPropertyChangedEventArgs e)
{
Console.WriteLine(" PropertyChanged event is raised");
}
Private Sub autoLabel1_PropertyChanged(ByVal sender As Object, ByVal e As Syncfusion.ComponentModel.SyncfusionPropertyChangedEventArgs)
Console.WriteLine(" PropertyChanged event is raised")
End Sub