Example #1
0
        public int AddLayerStruct <T>(string layerName, OeipLayerType layerType, T t) where T : struct
        {
            int layerIndex = OeipHelper.addPiepLayer(PipeId, layerName, layerType, IntPtr.Zero);

            UpdateParametStruct(layerIndex, t);
            return(layerIndex);
        }
Example #2
0
 public int AddLayer(string layerName, OeipLayerType layerType)
 {
     return(OeipHelper.addPiepLayer(PipeId, layerName, layerType, IntPtr.Zero));
 }
Example #3
0
 public static extern int addPiepLayer(int pipeId, string layerName, OeipLayerType layerType, IntPtr paramet);