How to use the event Transfer of Interface IBER20 Or IERC20?

You want to use Transfer of the event attribute of the interface.

I think it's
emit _tokenAddress.Transfer(address(this),holders, amount);
but this causes an error.

Error instructions : : tests/4_Ballot_test.sol:93:16: TypeError: Member "Transfer" not found or not visible after argument-dependent lookup in contract IBEP20.

:1234: Code to reproduce

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}

library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}

interface IBEP20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
function owner() public view returns (address) {
return _owner;
}
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}

contract transfersend is Context,Ownable {
   
function tokensend(IBEP20 _tokenAddress,address[] memory holders, uint256 amount) public onlyOwner payable {
        for (uint i=0; i<holders.length; i++) {
          emit _tokenAddress.Transfer(address(this),holders[i], amount);
        }
    }
	
}

:computer: Environment

Remix 0.6.0

Hi, welcome1 :wave:

I am not sure what do you want to do. But you have defined the event at here, so you need to follow it. For more details, I think you can have a look at the solidity documentation: Structure of a Contract — Solidity 0.8.10 documentation (soliditylang.org)

This part doesn't make sense:

emit _tokenAddress.Transfer

The event can only be emitted by the contract itself, you can't trigger the event from outside. You have to use the transfer or transferFrom functions.