画像情報取得(画像タイプ)

Namespace: fvalgcli
Assembly: fvalgcli (in fvalgcli.dll) Version: 3.1.0.0 (3.1.0.11)

Syntax

C#
public static int fnFIE_img_get_type(
	FHANDLE himg
)
Visual Basic
Public Shared Function fnFIE_img_get_type ( 
	himg As FHANDLE
) As Integer

Parameters

himg
Type: fvalgcli..::..FHANDLE
情報を取得する画像のハンドル

Return Value

Type: Int32
正常終了した場合は、画像のタイプ(f_imgtype)を返します。 異常終了した場合は、-1を返します。

Examples

C# Copy imageCopy
//    $Revision: 1.1 $

using System;
using System.Collections.Generic;
using System.Text;
using fvalgcli;

namespace TC
{
    public partial class FIE
    {
        /// <summary>
        /// 画像情報取得(画像タイプ).
        /// </summary>
        [FvPluginExecute]
        public void fnFIE_img_get_type()
        {
            // fnFIE_img_child_alloc 参照.
        }
    }
}


Visual Basic Copy imageCopy
'    $Revision: 1.1 $

Imports System.Collections.Generic
Imports System.Text
Imports fvalgcli

Public Partial Class FIE
    ''' <summary>
    ''' 画像情報取得(画像タイプ).
    ''' </summary>
    <FvPluginExecute> _
    Public Sub fnFIE_img_get_type()
        ' fnFIE_img_child_alloc 参照.
    End Sub
End Class

See Also