ContourPoint.Equals Method
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.
Provides methods for comparing objects.
Overloads
Equals(Object) |
Determines if a given object is an instance of ContourPoint and equal to the current instance of ContourPoint. |
Equals(ContourPoint) |
Determines if a given instance of ContourPoint is equal to the current instance of ContourPoint. |
Equals(Object)
- Source:
- TTSEngineTypes.cs
- Source:
- TTSEngineTypes.cs
- Source:
- TTSEngineTypes.cs
Determines if a given object is an instance of ContourPoint and equal to the current instance of ContourPoint.
public:
override bool Equals(System::Object ^ obj);
public override bool Equals (object obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean
Parameters
- obj
- Object
An object that can be cast to an instance of ContourPoint.
Returns
Returns true
if the current instance of ContourPoint and that obtained from the obj
argument are equal, otherwise returns false
.
Remarks
The method returns false if the Object provided by the obj
argument cannot be cast to ContourPoint.
Applies to
Equals(ContourPoint)
- Source:
- TTSEngineTypes.cs
- Source:
- TTSEngineTypes.cs
- Source:
- TTSEngineTypes.cs
Determines if a given instance of ContourPoint is equal to the current instance of ContourPoint.
public:
virtual bool Equals(System::Speech::Synthesis::TtsEngine::ContourPoint other);
public bool Equals (System.Speech.Synthesis.TtsEngine.ContourPoint other);
override this.Equals : System.Speech.Synthesis.TtsEngine.ContourPoint -> bool
Public Function Equals (other As ContourPoint) As Boolean
Parameters
- other
- ContourPoint
An instance of ContourPoint that will be compared to the current instance.
Returns
Returns true
if both the current instance of ContourPoint and that supplied through the other
argument are equal, otherwise returns false
.