Class ALDSCompression.TDSCompressionItems
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 9: | Line 9: | ||
'''Unit:''' [[Unit ALDSCompression|ALDSCompression]] | '''Unit:''' [[Unit ALDSCompression|ALDSCompression]] | ||
− | '''Inherits:''' [[Class LPComponent. | + | '''Inherits:''' [[Class LPComponent.TLPTypedCollection|TLPTypedCollection]] |
== Syntax == | == Syntax == | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''type''' TDSCompressionItems = '''class'''( [[Class LPComponent. | + | '''type''' TDSCompressionItems = '''class'''( [[Class LPComponent.TLPTypedCollection|TLPTypedCollection, T]] ) |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''class''' TDSCompressionItems : '''public''' [[Class LPComponent. | + | '''class''' TDSCompressionItems : '''public''' [[Class LPComponent.TLPTypedCollection|TLPTypedCollection]] |
</code> | </code> | ||
=== Visual C++ (MFC): === | === Visual C++ (MFC): === | ||
<code> | <code> | ||
− | '''class''' CTDSCompressionItems : '''public''' [[Class LPComponent. | + | '''class''' CTDSCompressionItems : '''public''' [[Class LPComponent.TLPTypedCollection|CTLPTypedCollection]] |
</code> | </code> | ||
=== C# (.NET): === | === C# (.NET): === | ||
<code> | <code> | ||
− | '''public ref class''' TDSCompressionItems : [[Class LPComponent. | + | '''public ref class''' TDSCompressionItems : [[Class LPComponent.TLPTypedCollection|Vcl.VclCollectionProperty]] |
</code> | </code> | ||
== Summary == | == Summary == | ||
Line 41: | Line 41: | ||
=== Public === | === Public === | ||
*[[Method function ALDSCompression.TDSCompressionItems.GetAvailableCompressions(TStrings;Boolean) : Boolean|function GetAvailableCompressions(ADevicesList : TStrings; AShowAllFilters : Boolean) : Boolean]] - Obtains a list of all available compressions on the system. | *[[Method function ALDSCompression.TDSCompressionItems.GetAvailableCompressions(TStrings;Boolean) : Boolean|function GetAvailableCompressions(ADevicesList : TStrings; AShowAllFilters : Boolean) : Boolean]] - Obtains a list of all available compressions on the system. | ||
+ | |||
+ | == From [[Class LPComponent.TLPTypedCollection|TLPTypedCollection]] == | ||
+ | |||
+ | == Properties == | ||
+ | |||
+ | === Public === | ||
+ | *[[Property LPComponent.TLPTypedCollection.Items|Items]] | ||
+ | *[[Property LPComponent.TLPTypedCollection.Current|Current]] | ||
+ | *[[Property LPComponent.TLPTypedCollection.Current|Current]] | ||
+ | |||
+ | == Methods == | ||
+ | |||
+ | === Public === | ||
+ | *[[Method function LPComponent.TLPTypedCollection.GetCurrent() : T|function GetCurrent() : T]] | ||
+ | *[[Method function LPComponent.TLPTypedCollection.GetCurrent() : T|function GetCurrent() : T]] | ||
+ | *[[Method function LPComponent.TLPTypedCollection.MoveNext() : Boolean|function MoveNext() : Boolean]] | ||
+ | *[[Method function LPComponent.TLPTypedCollection.Add() : T|function Add() : T]] | ||
+ | *[[Method function LPComponent.TLPTypedCollection.GetEnumerator() : TEnumerator|function GetEnumerator() : TEnumerator]] | ||
+ | *[[Method function LPComponent.TLPTypedCollection.GetReverse() : IOWReverseEnumeratorHost|function GetReverse() : IOWReverseEnumeratorHost]] | ||
+ | *[[Method procedure LPComponent.TLPTypedCollection.ForEach(TProc)|procedure ForEach(ALambda : TProc)]] | ||
+ | *[[Method procedure LPComponent.TLPTypedCollection.ForEachBack(TProc)|procedure ForEachBack(ALambda : TProc)]] | ||
[[Category:Classes]] | [[Category:Classes]] |
Revision as of 20:28, 10 June 2013
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: AudioLabBasicPkg
Unit: ALDSCompression
Inherits: TLPTypedCollection
Contents |
Syntax
Delphi:
type TDSCompressionItems = class( TLPTypedCollection, T )
C++ Builder:
class TDSCompressionItems : public TLPTypedCollection
Visual C++ (MFC):
class CTDSCompressionItems : public CTLPTypedCollection
C# (.NET):
public ref class TDSCompressionItems : Vcl.VclCollectionProperty
Summary
Collection of desired DirectShow audio compressors.
Description
Defines a collection of desired DirectShow audio compressors. The first available compressor from the list will be used for compression. If non of the compressors is available, no compression will be used.
Methods
Public
- function GetAvailableCompressions(ADevicesList : TStrings; AShowAllFilters : Boolean) : Boolean - Obtains a list of all available compressions on the system.