Discuss this help topic in SecureBlackbox Forum

TElOpenOfficeXMLManifest.Add

TElOpenOfficeXMLManifest     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Adds items to the list.

Declaration

[C#]
    int Add(TElOpenOfficeXMLManifestFileEntry AFileEntry);
    int Add(string FullPath, string MediaType);

[VB.NET]
    Function Add(ByVal AFileEntry As TElOpenOfficeXMLManifestFileEntry) As Integer
    Function Add(ByVal FullPath As String, ByVal MediaType As String) As Integer

[Pascal]
    function Add(AFileEntry : TElOpenOfficeXMLManifestFileEntry) : integer;
    function Add(const FullPath, MediaType : WideString) : integer;

[C++]
    int32_t Add(TElOpenOfficeXMLManifestFileEntry &AFileEntry);
    int32_t Add(TElOpenOfficeXMLManifestFileEntry *AFileEntry);
    int32_t Add(const sb_u16string &FullPath, const sb_u16string &MediaType);
    int32_t Add(const std::wstring &FullPath, const std::wstring &MediaType);

[PHP]
    integer Add(TElOpenOfficeXMLManifestFileEntry $AFileEntry)
    integer Add(string $FullPath, string $MediaType)

[Java]
    int add(TElOpenOfficeXMLManifestFileEntry AFileEntry);
    int add(String FullPath, String MediaType);

Parameters

  • AFileEntry - the file-entry to be added
  • FullPath - specifies full path to the desired entry
  • MediaType - specifies the media type of the entry

Return value

    Returns the index of the newly added element in the list.

Description

    Use this method to add file entries to the Manifest.

See also:     Delete     Insert     FileEntries    

Discuss this help topic in SecureBlackbox Forum