PARAMFLAG 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意
Use System.Runtime.InteropServices.ComTypes.PARAMFLAG instead. http://go.microsoft.com/fwlink/?linkid=14202
请改用 PARAMFLAG。
此枚举支持其成员值的按位组合。
public enum class PARAMFLAG
[System.Flags]
[System.Runtime.InteropServices.ComVisible(false)]
[System.Serializable]
public enum PARAMFLAG
[System.Flags]
[System.Serializable]
[System.Obsolete("Use System.Runtime.InteropServices.ComTypes.PARAMFLAG instead. http://go.microsoft.com/fwlink/?linkid=14202", false)]
public enum PARAMFLAG
[<System.Flags>]
[<System.Runtime.InteropServices.ComVisible(false)>]
[<System.Serializable>]
type PARAMFLAG =
[<System.Flags>]
[<System.Serializable>]
[<System.Obsolete("Use System.Runtime.InteropServices.ComTypes.PARAMFLAG instead. http://go.microsoft.com/fwlink/?linkid=14202", false)>]
type PARAMFLAG =
Public Enum PARAMFLAG
- 继承
- 属性
字段
PARAMFLAG_FHASCUSTDATA | 64 | 该参数具有自定义数据。 |
PARAMFLAG_FHASDEFAULT | 32 | 参数定义了默认行为。 |
PARAMFLAG_FIN | 1 | 参数将信息从调用方传递给被调用方。 |
PARAMFLAG_FLCID | 4 | 参数是客户端应用程序的本地标识符。 |
PARAMFLAG_FOPT | 16 | 参数是可选的。 |
PARAMFLAG_FOUT | 2 | 参数将信息从调用方返回到被调用方。 |
PARAMFLAG_FRETVAL | 8 | 参数是该成员的返回值。 |
PARAMFLAG_NONE | 0 | 未指定参数是传递还是接收信息。 |