public static bool TryGetName(this INameableGraphicsObject obj, out string result) { lock (Table) return(Table.TryGetValue(obj, out result)); }
public static string ToObjectID(this INameableGraphicsObject obj) { return(ToObjectID((object)obj)); }
public static void SetName(this INameableGraphicsObject obj, string name) { SetName((object)obj, name); }