FSharp.Data.Tdms


Group Module

Functions and values

Function or value Description

findChannel channelName

Full Usage: findChannel channelName

Parameters:
    channelName : string - the name of the Channel to get.

Returns: Group -> Channel

Finds the Channel with the given name within the Group.

channelName : string

the name of the Channel to get.

Returns: Group -> Channel

getChannels arg1

Full Usage: getChannels arg1

Parameters:
Returns: seq<Channel>

Returns all channels within the Group.

arg0 : Group
Returns: seq<Channel>

getPropertyValue propertyName

Full Usage: getPropertyValue propertyName

Parameters:
    propertyName : string

Returns: Group -> 't
propertyName : string
Returns: Group -> 't

tryFindChannel channelName arg2

Full Usage: tryFindChannel channelName arg2

Parameters:
    channelName : string - the name of the Channel to get.
    arg1 : Group

Returns: Channel option

Finds the Channel with the given name within the Group. Returns None if it does not exist.

channelName : string

the name of the Channel to get.

arg1 : Group
Returns: Channel option

tryGetPropertyValue propertyName arg2

Full Usage: tryGetPropertyValue propertyName arg2

Parameters:
    propertyName : string
    arg1 : Group

Returns: 't option
propertyName : string
arg1 : Group
Returns: 't option