AIEditor.Gui.GuiData.CreatePositionedNodePropertyGrid C# (CSharp) Метод

CreatePositionedNodePropertyGrid() приватный статический Метод

private static CreatePositionedNodePropertyGrid ( Window callingWindow ) : void
callingWindow FlatRedBall.Gui.Window
Результат void
        private static void CreatePositionedNodePropertyGrid(Window callingWindow)
        {
            PropertyGrid<PositionedNode> asPropertyGrid = callingWindow as PropertyGrid<PositionedNode>;

            asPropertyGrid.ExcludeMember("CostToGetHere");
            asPropertyGrid.ExcludeMember("Links");
            asPropertyGrid.ExcludeMember("X");
            asPropertyGrid.ExcludeMember("Y");
            asPropertyGrid.ExcludeMember("Z");

            asPropertyGrid.Name = "Positioned Node";
        }