DataPointCollection.FindAllByValue Método
Definição
Localiza todos os pontos de dados que são iguais ao valor especificado.Finds all the data points that are equal to the specified value.
Sobrecargas
| FindAllByValue(Double, String, Int32) |
Localiza todos os pontos de dados que são iguais ao valor especificado, começando no local de índice especificado.Finds all the data points that are equal to the specified value, starting from the specified index location. |
| FindAllByValue(Double, String) |
Localiza todos os pontos de dados que são iguais ao valor especificado.Finds all the data points that are equal to the specified value. |
| FindAllByValue(Double) |
Localiza todos os pontos de dados que são iguais ao valor especificado.Finds all the data points that are equal to the specified value. |
FindAllByValue(Double, String, Int32)
Localiza todos os pontos de dados que são iguais ao valor especificado, começando no local de índice especificado.Finds all the data points that are equal to the specified value, starting from the specified index location.
public:
System::Collections::Generic::IEnumerable<System::Windows::Forms::DataVisualization::Charting::DataPoint ^> ^ FindAllByValue(double valueToFind, System::String ^ useValue, int startIndex);
public System.Collections.Generic.IEnumerable<System.Windows.Forms.DataVisualization.Charting.DataPoint> FindAllByValue (double valueToFind, string useValue, int startIndex);
member this.FindAllByValue : double * string * int -> seq<System.Windows.Forms.DataVisualization.Charting.DataPoint>
Public Function FindAllByValue (valueToFind As Double, useValue As String, startIndex As Integer) As IEnumerable(Of DataPoint)
Public Iterator Function FindAllByValue (valueToFind As Double, useValue As String, startIndex As Integer) As IEnumerable(Of DataPoint)
Parâmetros
- valueToFind
- Double
O valor de ponto de dados a ser encontrado.The data point value to find.
- useValue
- String
O valor de ponto de dados a ser usado (X, Y1, Y2, etc.).The data point value to use (X, Y1, Y2...).
- startIndex
- Int32
O local de índice do ponto de dados em que a pesquisa é iniciada.The index location of the data point to start searching from.
Retornos
Uma interface IEnumerable<T> que representa o enumerador dos pontos de dados correspondentes.An IEnumerable<T> interface that represents the enumerator of the matching data points.
Aplica-se a
FindAllByValue(Double, String)
Localiza todos os pontos de dados que são iguais ao valor especificado.Finds all the data points that are equal to the specified value.
public:
System::Collections::Generic::IEnumerable<System::Windows::Forms::DataVisualization::Charting::DataPoint ^> ^ FindAllByValue(double valueToFind, System::String ^ useValue);
public System.Collections.Generic.IEnumerable<System.Windows.Forms.DataVisualization.Charting.DataPoint> FindAllByValue (double valueToFind, string useValue);
member this.FindAllByValue : double * string -> seq<System.Windows.Forms.DataVisualization.Charting.DataPoint>
Public Function FindAllByValue (valueToFind As Double, useValue As String) As IEnumerable(Of DataPoint)
Public Iterator Function FindAllByValue (valueToFind As Double, useValue As String) As IEnumerable(Of DataPoint)
Parâmetros
- valueToFind
- Double
O valor de ponto de dados a ser encontrado.The data point value to find.
- useValue
- String
O valor de ponto de dados a ser usado (X, Y1, Y2, etc.).The data point value to use (X, Y1, Y2...).
Retornos
Uma interface IEnumerable<T> que representa o enumerador dos pontos de dados correspondentes.An IEnumerable<T> interface that represents the enumerator of the matching data points.
Aplica-se a
FindAllByValue(Double)
Localiza todos os pontos de dados que são iguais ao valor especificado.Finds all the data points that are equal to the specified value.
public:
System::Collections::Generic::IEnumerable<System::Windows::Forms::DataVisualization::Charting::DataPoint ^> ^ FindAllByValue(double valueToFind);
public System.Collections.Generic.IEnumerable<System.Windows.Forms.DataVisualization.Charting.DataPoint> FindAllByValue (double valueToFind);
member this.FindAllByValue : double -> seq<System.Windows.Forms.DataVisualization.Charting.DataPoint>
Public Function FindAllByValue (valueToFind As Double) As IEnumerable(Of DataPoint)
Parâmetros
- valueToFind
- Double
O valor de ponto de dados a ser encontrado.The data point value to find.
Retornos
Uma interface IEnumerable<T> que representa o enumerador dos pontos de dados correspondentes.An IEnumerable<T> interface that represents the enumerator of the matching data points.