チャイルド画像をルート画像へ割り当てる

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

Syntax

C#
public static int fnFIE_img_child_attach_single_ch(
	FHANDLE hchild,
	FHANDLE hroot,
	int ch,
	int x,
	int y,
	int width,
	int height
)
Visual Basic
Public Shared Function fnFIE_img_child_attach_single_ch ( 
	hchild As FHANDLE,
	hroot As FHANDLE,
	ch As Integer,
	x As Integer,
	y As Integer,
	width As Integer,
	height As Integer
) As Integer

Parameters

hchild
Type: fvalgcli..::..FHANDLE
割り当てるチャイルド画像
hroot
Type: fvalgcli..::..FHANDLE
割り当てられるルート画像(チャイルド画像でも可)
ch
Type: System..::..Int32
チャイルド画像を割り当てる、ルート画像のチャネル(0≦ ch ≦(ルート画像のch数-1))
x
Type: System..::..Int32
領域左上x座標 (0≦ x ≦(ルート画像の幅 -1 - width ))
y
Type: System..::..Int32
領域左上y座標 (0≦ y ≦(ルート画像の高さ -1 - height ))
width
Type: System..::..Int32
領域幅 (1≦ width ≦(ルート画像の幅- x ))
height
Type: System..::..Int32
領域高さ (1≦ height ≦(ルート画像の高さ- y ))

Return Value

Type: Int32
以下のエラーコードを返します。

エラーコード:
f_err内容
F_ERR_NONE正常終了
F_ERR_NOMEMORYメモリ不足エラー
F_ERR_INVALID_IMAGE画像オブジェクトの異常
F_ERR_INVALID_PARAMパラメータ異常
F_ERR_NO_LICENCEライセンスエラー、または未初期化エラー

Examples

C# Copy imageCopy
//    $Revision: 1.1 $

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

namespace TC
{
    public partial class FIE
    {
        [FvPluginExecute]
        public void fnFIE_img_child_attach_single_ch()
        {
            // fnFIE_img_child_attach 参照.
        }
    }
}


Visual Basic Copy imageCopy
'    $Revision: 1.1 $

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

Public Partial Class FIE
    <FvPluginExecute> _
    Public Sub fnFIE_img_child_attach_single_ch()
        ' fnFIE_img_child_attach 参照.
    End Sub
End Class

See Also