MPLATFORMLib Namespace > MWriterClass Class : ConfigTypesGetByIndex Method |
Public Overridable Sub ConfigTypesGetByIndex( _ ByVal _nIndex As Integer, _ ByRef _pbsSubType As String _ )
public virtual void ConfigTypesGetByIndex( int _nIndex, out string _pbsSubType )
public procedure ConfigTypesGetByIndex( _nIndex: Integer; Out _pbsSubType: String ); virtual;
public: virtual void ConfigTypesGetByIndex( int _nIndex, [PARAMFLAG::Out] BSTR* _pbsSubType )
Dim myType As String myWriter.ConfigTypesGetByIndex(1, myType)
string myType; myWriter.ConfigTypesGetByIndex(1, out myType);
var myWriter: MWriter; myConfig: IMConfig; myType: widestring; begin myWriter:= CreateComObject(CLASS_MWriter) as MWriter; myConfig:=myWriter as IMConfig; myConfig.ConfigTypesGetByIndex(1, myType); end;