コード例 #1
0
ファイル: LedDll.cs プロジェクト: kyo2237129199/ZDW
 public static extern int LV_AddMultiLineTextToImageTextArea(int hProgram,int ProgramNo,int AreaNo,int AddType,string AddStr,ref FONTPROP pFontProp,ref PLAYPROP pPlayProp,int nAlignment,int IsVCenter);
コード例 #2
0
ファイル: LedDll.cs プロジェクト: kyo2237129199/ZDW
 public static extern int LV_AddFileToImageTextArea(int hProgram,int ProgramNo,int AreaNo,string FilePath,ref PLAYPROP pPlayProp);
コード例 #3
0
ファイル: LedDll.cs プロジェクト: kyo2237129199/ZDW
 public static extern int LV_AddSingleLineTextToImageTextArea(int hProgram,int ProgramNo,int AreaNo,int AddType,string AddStr,ref FONTPROP pFontProp,ref PLAYPROP pPlayProp);
コード例 #4
0
 public static int AddFileToImageTextArea(int hProgram, int ProgramNo, int AreaNo, string FilePath, ref PLAYPROP pPlayProp) => LV_AddFileToImageTextArea(hProgram, ProgramNo, AreaNo, FilePath, ref pPlayProp);