Ejemplo n.º 1
0
        GetMasterStory(this cStory obj, string Name)
        {
            bool IsMasterStory;

            IsMasterStory = default(bool);
            var res = obj.GetMasterStory(Name, ref IsMasterStory);

            return(IsMasterStory);
        }
Ejemplo n.º 2
0
        GetElevation(this cStory obj, string Name)
        {
            double Elevation;

            Elevation = default(double);
            var res = obj.GetElevation(Name, ref Elevation);

            return(Elevation);
        }
Ejemplo n.º 3
0
        GetHeight(this cStory obj, string Name)
        {
            double Height;

            Height = default(double);
            var res = obj.GetHeight(Name, ref Height);

            return(Height);
        }
Ejemplo n.º 4
0
        GetGUID(this cStory obj, string Name)
        {
            string GUID;

            GUID = default(string);
            var res = obj.GetGUID(Name, ref GUID);

            return(GUID);
        }
Ejemplo n.º 5
0
        GetNameList(this cStory obj)
        {
            int NumberNames;

            NumberNames = default(int);
            string[] MyName;
            MyName = default(string[]);
            var res = obj.GetNameList(ref NumberNames, ref MyName);

            return(NumberNames, MyName);
        }
Ejemplo n.º 6
0
        GetSplice(this cStory obj, string Name)
        {
            bool SpliceAbove;

            SpliceAbove = default(bool);
            double SpliceHeight;

            SpliceHeight = default(double);
            var res = obj.GetSplice(Name, ref SpliceAbove, ref SpliceHeight);

            return(SpliceAbove, SpliceHeight);
        }
Ejemplo n.º 7
0
        GetSimilarTo(this cStory obj, string Name)
        {
            bool IsMasterStory;

            IsMasterStory = default(bool);
            string SimilarToStory;

            SimilarToStory = default(string);
            var res = obj.GetSimilarTo(Name, ref IsMasterStory, ref SimilarToStory);

            return(IsMasterStory, SimilarToStory);
        }
Ejemplo n.º 8
0
        GetStories(this cStory obj)
        {
            int NumberStories;

            NumberStories = default(int);
            string[] StoryNames, SimilarToStory;
            StoryNames = SimilarToStory = default(string[]);
            double[] StoryElevations, StoryHeights, SpliceHeight;
            StoryElevations = StoryHeights = SpliceHeight = default(double[]);
            bool[] IsMasterStory, SpliceAbove;
            IsMasterStory = SpliceAbove = default(bool[]);
            var res = obj.GetStories(ref NumberStories, ref StoryNames, ref StoryElevations, ref StoryHeights, ref IsMasterStory, ref SimilarToStory, ref SpliceAbove, ref SpliceHeight);

            return(NumberStories, StoryNames, StoryElevations, StoryHeights, IsMasterStory, SimilarToStory, SpliceAbove, SpliceHeight);
        }