Region Class

Represents an additional special area for LineChart's Axis.

Definition

Namespace: BeeMobile.LineChart
Assembly: BeeMobile.LineChart.NET48 (in BeeMobile.LineChart.NET48.dll) Version: 4.8.1.10 (4.8.1.10)
C#
public abstract class Region : INotifyPropertyChanged, 
	IDisposable, ICloneable
Inheritance
Object    Region
Derived
Implements
INotifyPropertyChanged, ICloneable, IDisposable

Constructors

Region Initializes a new instance of Region class.
Region(String) Initializes a new instance of Region class.

Properties

Alignment Gets or sets the alignment of the text in region.
BackColor Gets or sets the background color for the region.
Font Gets or sets the font used to display text in the region.
ForeColor Gets or sets the foreground color used to display text in the region.
Name Gets or sets the name of the region, which must be unique in the RegionCollection.
Text Gets or sets the Text label of the region.
TextBackgroundColor Gets or sets a color used to draw a background behind the Text.
WrapMode Gets or sets the WrapMode used on Text property.

Methods

Clone Creates a deep copy of Region object.
Dispose Releases all resourcees used by this object.
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
OnPropertyChanged Fires the PropertyChanged event.
ResetAlignment Sets the Alignment to the default value.
ResetBackColor Sets the BackColor to the default value.
ResetFont Sets the Font to the default value.
ResetForeColor Sets the ForeColor to the default value.
ResetText Sets the Text to the default value.
ResetTextBackgroundColor Sets the TextBackgroundColor to the default value.
ResetWrapMode Sets the WrapMode to the default value.
ShouldSerializeAlignment Indicates whether the Alignment property should be serialized by Visual Studio designer.
ShouldSerializeBackColor Indicates whether the BackColor property should be serialized by Visual Studio designer.
ShouldSerializeFont Indicates whether the Font property should be serialized by Visual Studio designer.
ShouldSerializeForeColor Indicates whether the ForeColor property should be serialized by Visual Studio designer.
ShouldSerializeName Indicates whether the Name property should be serialized by Visual Studio designer.
ShouldSerializeText Indicates whether the Name property should be serialized by Visual Studio designer.
ShouldSerializeTextBackgroundColor Indicates whether the TextBackgroundColor property should be serialized by Visual Studio designer.
ShouldSerializeWrapMode Indicates whether the WrapMode property should be serialized by Visual Studio designer.
ToString Returns the value of Name property.
(Overrides ObjectToString)

Events

PropertyChanged Raised whenever a value of a property changes.

Fields

m_DrawingExclusiveLock Contains an object which this Region object locks on to whenever it is part of LineChart object and whenever a property or a method is run which influences the graphical output of LineChart.

See Also