画像アドレス取得(チャネル0固定)

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

Syntax

C#
public static IntPtr fnFIE_img_get_adrs(
	FHANDLE himg
)
Visual Basic
Public Shared Function fnFIE_img_get_adrs ( 
	himg As FHANDLE
) As IntPtr

Parameters

himg
Type: fvalgcli..::..FHANDLE
アドレスを取得する画像のハンドル

Return Value

Type: IntPtr
正常終了した場合は、左上画素のアドレスを返します。 異常終了した場合は、IntPtr.Zero を返します。(パラメータエラー、画像形式エラー、ライセンスエラー、または未初期化エラー)

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>
        /// 画像アドレス取得(チャネル0固定).
        /// </summary>
        [FvPluginExecute]
        public void fnFIE_img_get_adrs()
        {
            // 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>
    ''' 画像アドレス取得(チャネル0固定).
    ''' </summary>
    <FvPluginExecute> _
    Public Sub fnFIE_img_get_adrs()
        ' fnFIE_img_child_alloc 参照.
    End Sub
End Class

See Also