Click or drag to resize

NoParseDataFrame Methods

The NoParseDataFrame type exposes the following members.

Methods
  NameDescription
Public methodcheckForErrors
Search the input of this DataFrame for lines containing "FactSetOnDemandQueryError", indicating that there was an error
(Inherited from DataFrame.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodgetCellT
Get the dat point at the given row and column
(Inherited from DataFrame.)
Public methodgetCellAt
Returns a datapoint at a given row and column as an object
(Inherited from DataFrame.)
Public methodgetCellFloat
Returns a datapoint at given row and column as double
(Inherited from DataFrame.)
Public methodgetCellInt
Returns a datapoint at given row and column as integer
(Inherited from DataFrame.)
Public methodgetCellString
Returns a datapoint at given row and column as string
(Inherited from DataFrame.)
Public methodgetColumnT
Returns all data points in a particular column
(Inherited from DataFrame.)
Public methodgetColumnAsDoubles
Returns all datapoints in a column as doubles
(Inherited from DataFrame.)
Public methodgetColumnAsInts
Returns all datapoints in a column as integers
(Inherited from DataFrame.)
Public methodgetColumnAsStrings
Returns all datapoints in a column as strings
(Inherited from DataFrame.)
Public methodgetColumnForIndexT
Returns a particular column for a particular index
(Inherited from DataFrame.)
Public methodgetColumnForIndexAsDoubles
Returns a particular column for a particular index as a double Array
(Inherited from DataFrame.)
Public methodgetColumnForIndexAsInts
Returns a particular column for a particular index as an int Array
(Inherited from DataFrame.)
Public methodgetColumnForIndexAsMatlabString
For a specified index, returns all the values in one column as a string. Column values can be separated by the separator string. For a column with the values 1 2 and 3, we can format them to return as: '1','2','3' (by passing , for separator and ' for a surrounder) or "1"|"2"|"3" (by passing | for separator and " for surrounder)
(Inherited from DataFrame.)
Public methodgetColumnForIndexAsStrings
Returns a particular column for a particular index as a string Array
(Inherited from DataFrame.)
Public methodgetColumnNames
Returns array with all column names
(Inherited from DataFrame.)
Public methodgetColumnTypes
Returns array with all column types
(Inherited from DataFrame.)
Public methodgetColumnTypesAsStrings (Inherited from DataFrame.)
Public methodgetDotNetColumnTypes
Return array containing .NET types each column is best cast to
(Inherited from DataFrame.)
Public methodgetError
Get the exception this dataframe is storing, stored through the MarkException method. Call this if the dataframe has an error to find out what error it is
(Inherited from DataFrame.)
Public methodgetFSOD
Returns the FactSetOnDemand api object
(Inherited from DataFrame.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodgetIndices
Get an array with all the index groups
(Inherited from DataFrame.)
Public methodgetInput
Returns the input received from the server, pre-parse
(Inherited from DataFrame.)
Public methodgetNumberOfColumns
Returns the number of columns in this dataframe
(Inherited from DataFrame.)
Public methodgetNumberOfRows
Returns the number of rows in this dataframe
(Inherited from DataFrame.)
Public methodgetSummaryBuilder
Return the summarybuilder object that contains some data about the request
(Inherited from DataFrame.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodhasError
Returns true if this dataframe is storing an exception
(Inherited from DataFrame.)
Public methodisDoneParsing
Returns true if the dataframe is done
(Inherited from DataFrame.)
Public methodIsMatrixData
If the results downloaded by OnDemand servers state that the data contained in this DataFrame is Matrix-type data, this will be set to true
(Inherited from DataFrame.)
Public methodMarkException
Call to store an exception in the dataframe for future reference
(Inherited from DataFrame.)
Public methodParse(String)
Parse the dataframe
(Inherited from DataFrame.)
Public methodParse(String, String)
Parse the dataframe
(Inherited from DataFrame.)
Public methodParse(String, ListString)
Simply checks for error messages
(Overrides DataFrameParse(String, ListString).)
Public methodreceiveData (Inherited from DataFrame.)
Public methodthrowErrorIfAnyIsPresent
Throw the error this dataframe is storing.
(Inherited from DataFrame.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also